-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
46 lines (46 loc) · 1.15 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
44
45
46
{
"name": "vue-tag-manager",
"version": "0.1.2",
"description": "Easy to use Google Tag Manager implementation for Vue",
"keywords": [
"vue",
"tag manager",
"google tag manager",
"analytics",
"gtm"
],
"main": "lib/index.cjs.js",
"module": "lib/index.esm.js",
"unpkg": "lib/index.js",
"jsdelivr": "lib/index.js",
"types": "lib/index.d.ts",
"sideEffects": false,
"repository": "github:cajames/vue-tag-manager",
"author": "Chris James <[email protected]>",
"license": "MIT",
"scripts": {
"dev": "rollup -c -w",
"prepare": "NODE_ENV=production rollup -c",
"test": "jest",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md",
"bump": "np",
"coverage": "cat ./coverage/lcov.info | coveralls"
},
"files": [
"lib",
"types",
"src",
"scripts"
],
"devDependencies": {
"@types/jest": "^24.0.15",
"conventional-changelog-cli": "^2.0.1",
"coveralls": "^3.0.2",
"jest": "^24.8.0",
"np": "^5.0.3",
"rollup": "^1.15.6",
"rollup-plugin-typescript2": "^0.21.2",
"ts-jest": "^24.0.2",
"typescript": "^3.0.1"
}
}