-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.02 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.02 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
{
"name": "test-project",
"version": "0.0.1",
"description": "Exploration on doing webpack + babel (es6) + source maps + coverage",
"main": "server.js",
"scripts": {
"test": "node_modules/.bin/karma start",
"webpack": "node_modules/.bin/webpack --entry=./tests.webpack.js --output-filename=bundle.js --output-path=build"
},
"repository": {
"type": "git",
"url": "TBC"
},
"keywords": [],
"author": "Daniel Bush",
"license": "BSD-2-Clause",
"dependencies": {},
"devDependencies": {
"babel-core": "^6.2.1",
"babel-loader": "^6.2.0",
"babel-preset-es2015": "^6.1.18",
"chai": "^3.4.1",
"karma": "^0.13.21",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^0.2.2",
"karma-cli": "^0.1.2",
"karma-coverage": "^0.5.3",
"karma-jasmine": "^0.3.7",
"karma-mocha": "^0.2.2",
"karma-mocha-reporter": "^1.1.5",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.7.0",
"mocha": "^2.3.4",
"mocha-loader": "^0.7.1",
"webpack": "^1.12.9"
}
}