forked from smelukov/loftschool-example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.41 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
45
46
47
48
49
{
"name": "loftschool-example",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"codestyle": "eslint src test",
"travis": "npm run codestyle && npm test",
"build": "webpack --progress --colors",
"watch": "webpack-dev-server --progress --colors --open",
"start": "npm run watch",
"test": "karma start",
"cover": "istanbul cover _mocha -- test/*.js"
},
"author": "",
"license": "MIT",
"dependencies": {
"babel-core": "^6.22.1",
"babel-loader": "^7.0.0",
"babel-plugin-transform-runtime": "^6.22.0",
"babel-preset-latest": "^6.22.0",
"clean-webpack-plugin": "^0.1.15",
"css-loader": "^0.28.1",
"extract-text-webpack-plugin": "^2.1.0",
"file-loader": "^0.11.1",
"handlebars": "^4.0.6",
"handlebars-loader": "^1.4.0",
"html-webpack-plugin": "^2.26.0",
"style-loader": "^0.17.0",
"webpack": "^2.2.0"
},
"devDependencies": {
"chai": "^3.5.0",
"eslint": "^3.13.1",
"istanbul": "^0.4.5",
"istanbul-instrumenter-loader": "^2.0.0",
"karma": "^1.4.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.0.0",
"karma-coverage-istanbul-reporter": "^1.2.0",
"karma-firefox-launcher": "^1.0.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.2",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^2.0.1",
"mocha": "^3.2.0",
"webpack-dev-server": "^2.4.5"
}
}