-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.12 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"name": "doz-metatag",
"version": "1.1.3",
"description": "Inject meta tag in document from Doz app",
"main": "dist/index.js",
"dependencies": {
"metaset": "^2.0.1"
},
"devDependencies": {
"doz": "^1.6.1",
"jsdom": "^12.0.0",
"jsdom-global": "^3.0.2",
"mocha": "^5.2.0",
"parcel-bundler": "^1.12.5"
},
"scripts": {
"preversion": "npm run-script test && npm run-script build && echo git commit -a -m BUILD",
"postversion": "npm publish && git push --follow-tags",
"release:major": "npm version major",
"release:minor": "npm version minor",
"release:patch": "npm version patch",
"build": "parcel build index.js --no-cache --no-source-maps --global dozMetaTag",
"test": "mocha test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dozjs/doz-metatag.git"
},
"keywords": [
"meta",
"tag",
"metatag",
"doz",
"inject",
"prenrender"
],
"author": "Fabio Ricali",
"license": "MIT",
"bugs": {
"url": "https://github.com/dozjs/doz-metatag/issues"
},
"homepage": "https://github.com/dozjs/doz-metatag#readme"
}