-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.47 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
50
51
{
"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",
"prepare": "npm run travis"
},
"author": "",
"license": "MIT",
"dependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-latest": "^6.24.1",
"clean-webpack-plugin": "^0.1.17",
"css-loader": "^0.28.7",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.5",
"handlebars": "^4.0.11",
"handlebars-loader": "^1.6.0",
"html-webpack-plugin": "^2.30.1",
"style-loader": "^0.19.0",
"webpack": "^3.8.1"
},
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^4.11.0",
"istanbul": "^0.4.5",
"istanbul-instrumenter-loader": "^3.0.0",
"karma": "^1.7.1",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage-istanbul-reporter": "^1.3.0",
"karma-firefox-launcher": "^1.0.1",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^2.0.6",
"mocha": "^4.0.1",
"puppeteer": "^0.13.0",
"webpack-dev-server": "^2.9.4"
}
}