-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.55 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.55 KB
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
{
"name": "andy-ab",
"version": "1.1.0-beta.2",
"description": "A javascript AB testing framework",
"repository": {
"type": "git",
"url": "git+https://github.com/AndyStabler/andy-ab.git"
},
"author": "Andy Stabler <sdolta@gmail.com> (http://andystabler.co.uk)",
"license": "ISC",
"bugs": {
"url": "https://github.com/AndyStabler/andy-ab/issues"
},
"homepage": "https://github.com/AndyStabler/andy-ab#readme",
"devDependencies": {
"@babel/preset-env": "^7.0.0-beta.44",
"chai": "^4.1.2",
"dirty-chai": "^2.0.1",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.11.0",
"grunt": "^1.0.2",
"grunt-contrib-clean": "^1.1.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-uglify-es": "^3.3.0",
"grunt-http-server": "^2.1.0",
"grunt-mocha-test": "^0.13.3",
"grunt-webpack": "^3.1.1",
"gruntify-eslint": "^4.0.0",
"jsdom": "^11.8.0",
"jsdom-global": "^3.0.2",
"mocha": "^5.1.0",
"sinon": "^4.5.0",
"sinon-chai": "^3.0.0",
"webpack": "^4.6.0",
"webpack-dev-server": "^3.1.3"
},
"scripts": {
"test": "grunt test"
},
"main": "lib/andy-ab.js",
"directories": {
"example": "example",
"test": "test"
},
"dependencies": {
"@babel/core": "^7.0.0-beta.44",
"babel-loader": "^8.0.0-beta.2",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"js-cookie": "^2.2.0",
"mutation-observer": "^1.0.3"
},
"keywords": [
"experimentation",
"multivariate",
"testing",
"ab"
]
}