-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.77 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.77 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
61
62
63
64
{
"name": "build-tooling-may-2016",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"mocha": "cross-env NODE_ENV=testing mocha-webpack --opts ./build/mocha-webpack.opts",
"style": "standard",
"test": "npm run style && npm run mocha",
"start": "cross-env NODE_ENV=development node ./build/dev-server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Cook-Systems/build-tooling-may-2016.git"
},
"author": "Peter Zastoupil",
"license": "ISC",
"bugs": {
"url": "https://github.com/Cook-Systems/build-tooling-may-2016/issues"
},
"homepage": "https://github.com/Cook-Systems/build-tooling-may-2016#readme",
"dependencies": {
"angular": "^1.5.5",
"angular-animate": "^1.5.5",
"angular-aria": "^1.5.5",
"angular-material": "^1.0.8",
"angular-messages": "^1.5.5",
"angular-mocks": "^1.5.5",
"angular-route": "^1.5.5",
"angular-sanitize": "^1.5.5"
},
"devDependencies": {
"babel-core": "^6.8.0",
"babel-eslint": "^6.0.4",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-0": "^6.5.0",
"cross-env": "^1.0.7",
"css-loader": "^0.23.1",
"eventsource-polyfill": "^0.9.6",
"express": "^4.13.4",
"extract-text-webpack-plugin": "^1.0.1",
"jsverify": "^0.7.1",
"mocha": "^2.4.5",
"mocha-loader": "^0.7.1",
"mocha-webpack": "^0.3.0",
"rimraf": "^2.5.2",
"source-map-support": "^0.4.0",
"standard": "^7.0.1",
"standard-format": "^2.1.1",
"style-loader": "^0.13.1",
"webpack": "^1.13.0",
"webpack-dev-middleware": "^1.6.1",
"webpack-hot-middleware": "^2.10.0"
},
"standard": {
"parser": "babel-eslint",
"globals": [
"PROD",
"DEV",
"TEST"
]
}
}