-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
61 lines (61 loc) · 1.33 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "ga-track",
"version": "2.4.1",
"description": "Google Analytics Tracking helper",
"main": "index.js",
"module": "dist/ga-track.js",
"keywords": [
"browser",
"ga",
"analytics"
],
"scripts": {
"start": "scriptkit",
"build": "scriptkit build",
"dev": "scriptkit dev",
"test": "exit 0",
"pretest": "scriptkit build",
"prepublishOnly": "scriptkit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/firstandthird/ga-track.git"
},
"author": "First+Third",
"license": "MIT",
"bugs": {
"url": "https://github.com/firstandthird/ga-track/issues"
},
"homepage": "https://github.com/firstandthird/ga-track#readme",
"devDependencies": {
"eslint-config-firstandthird": "^6.0.3",
"eslint-plugin-import": "^2.22.1",
"scriptkit": "^3.0.0",
"tap-spec": "^5.0.0",
"tape-rollup": "^4.6.4",
"tape-run": "^11.0.0"
},
"eslintConfig": {
"env": {
"browser": true
},
"extends": "firstandthird"
},
"scriptkit": {
"files": {
"dist/ga-track.js": "index.js",
"test/ga-track.test.dist.js": "test/ga-track.test.js"
},
"scripts": {
"babel": {
"exclude": [
"node_modules/tape-rollup/*"
]
}
}
},
"dependencies": {
"aug": "^4.0.0",
"domassist": "^2.2.0"
}
}