-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 2.02 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
{
"name": "canvass",
"version": "2.1.7",
"description": "Canvass is a framework for implementing A/B/n and multi-variant testing",
"main": "distribution/Main.js",
"repository": "ssh://[email protected]:7999/vegas/canvass.git",
"author": "Adam Blanchard, Steve Goode",
"license": "UNLICENSED",
"publishConfig": {
"registry": "http://npm.skybet.net:5984"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-eslint": "^7.1.1",
"babel-plugin-transform-class-properties": "^6.19.0",
"babel-preset-es2015": "^6.18.0",
"babel-register": "^6.18.0",
"babel-root-import": "^4.1.5",
"eslint": "^3.11.0",
"eslint-plugin-react": "^6.7.1",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"jsdom": "9.12.0",
"jsdom-global": "2.1.1",
"mocha": "^3.1.2",
"mock-local-storage": "^1.0.2",
"sinon": "^1.17.6"
},
"scripts": {
"test": "node_modules/mocha/bin/mocha --recursive --compilers js:babel-register -r mock-local-storage -r jsdom-global/register tests",
"test:unit": "node_modules/mocha/bin/mocha --recursive --compilers js:babel-register -r mock-local-storage -r jsdom-global/register tests/unit",
"test:integration": "node_modules/mocha/bin/mocha --recursive --compilers js:babel-register -r mock-local-storage -r jsdom-global/register tests/integration",
"watch": "node_modules/mocha/bin/mocha --recursive --watch --compilers js:babel-register -r mock-local-storage -r jsdom-global/register tests",
"watch:unit": "node_modules/mocha/bin/mocha --recursive --watch --compilers js:babel-register -r mock-local-storage -r jsdom-global/register tests/unit",
"watch:integration": "node_modules/mocha/bin/mocha --recursive --watch --compilers js:babel-register -r mock-local-storage -r jsdom-global/register tests/integration",
"lint": "node_modules/eslint/bin/eslint.js ./src/ ./tests/",
"build": "babel src --out-dir distribution",
"prepublish": "npm test && npm run build"
},
"dependencies": {
"js-cookie": "^2.1.3",
"url-search-params": "^0.7.0"
}
}