-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 857 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 857 Bytes
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
{
"name": "ab-test-framework",
"version": "0.2.0",
"description": "AB Test Framework",
"author": "newsuk",
"main": "index.js",
"scripts": {
"test": "npm run lint && npm run unit && npm run e2e",
"lint": "eslint .",
"unit": "node ./tests/unit-test-runner",
"e2e": "node ./tests/integration-test-runner"
},
"dependencies": {
"autoprefixer": "^7.1.4",
"babel-core": "^6.20.0",
"babel-loader": "^7.0.0",
"babel-preset-es2015": "^6.18.0",
"css-loader": "^0.28.1",
"html-loader": "^0.5.1",
"http-server": "^0.10.0",
"node-sass": "^4.1.0",
"postcss-loader": "^2.0.6",
"sass-loader": "^6.0.3",
"webpack": "^3.5.6"
},
"devDependencies": {
"eslint": "^4.6.1",
"graceful-fs": "^4.1.11",
"jasmine": "^2.5.2",
"jasmine-spec-reporter": "^4.1.0",
"rimraf": "^2.6.2"
}
}