-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.07 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
{
"name": "google-analytics-ab",
"version": "0.2.2",
"description": "Function to create tests AB using analytics",
"main": "index.js",
"author": "Tacnoman - Renato Cassino",
"keywords": [
"google",
"analytics",
"ab",
"test",
"javascript"
],
"repository": {
"type": "git",
"url": "https://github.com/tacnoman/googleAnalyticsAB.git"
},
"license": "MIT",
"dependencies": {},
"devDependencies": {
"eslint": "^4.15.0",
"eslint-config-google": "^0.9.1",
"gulp": "^3.9.1",
"gulp-uglify": "^3.0.0",
"http-server": "^0.10.0",
"istanbul": "^0.4.5",
"jscoverage": "^0.6.0",
"mocha": "^5.0.0",
"nyc": "^11.4.1",
"pump": "^2.0.0"
},
"scripts": {
"start": "http-server",
"test": "mocha test/",
"build": "gulp && mv dist/index.js dist/google-analytics-ab.min.js && cp index.js dist/google-analytics-ab.js",
"coverage": "istanbul cover _mocha",
"lint": "eslint index.js"
},
"jest": {
"moduleFileExtensions": [
"js"
],
"moduleDirectories": [
"node_modules"
]
}
}