This repository has been archived by the owner on Jan 15, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (68 loc) · 2.46 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"private": true,
"name": "example",
"description": "ES Modules, Stage2 Class Properties, Webpack 2, Babel 7, Karma, Mocha, Code Coverage, Typescript Linting",
"version": "0.0.1",
"engines": {
"node": ">=7.8.0"
},
"author": "Cecile Muller",
"eslintConfig": {
"extends": "@wildpeaks/esmodules-stage2"
},
"scripts": {
"remove:www": "rimraf www || true",
"create:www": "mkdir www || true",
"remove:logs": "rimraf logs || true",
"create:logs": "mkdir logs || true",
"reset:www": "npm run remove:www && npm run create:www",
"reset:logs": "npm run remove:logs && npm run create:logs",
"start": "webpack-dev-server || true",
"build:webpack": "webpack --env.minify",
"build": "npm run reset:www && npm run build:webpack",
"analyze:build": "webpack --env.minify --profile --json > www/webpack.stats.json",
"analyze:view": "webpack-bundle-analyzer www/webpack.stats.json --mode static --report www/webpack.stats.html",
"analyze": "npm run reset:www && npm run analyze:build && npm run analyze:view",
"test:eslint": "eslint src",
"test:karma": "karma start karma.conf.js --single-run",
"test": "npm run reset:logs && npm run test:eslint && npm run test:karma"
},
"dependencies": {
"babel-core": "7.0.0-alpha.9",
"babel-loader": "7.0.0",
"babel-plugin-transform-class-properties": "7.0.0-alpha.9",
"babel-plugin-transform-runtime": "7.0.0-alpha.9",
"babel-preset-env": "2.0.0-alpha.7",
"css-loader": "0.28.4",
"extract-text-webpack-plugin": "2.1.0",
"file-loader": "0.11.1",
"html-webpack-plugin": "2.28.0",
"postcss-cssnext": "2.11.0",
"postcss-loader": "2.0.5",
"rimraf": "2.6.1",
"style-loader": "0.18.1",
"url-loader": "0.5.8",
"webpack": "2.6.1",
"webpack-dev-server": "2.4.5",
"webpack-subresource-integrity": "1.0.0-rc.1"
},
"devDependencies": {
"typescript": "2.3.3",
"@types/mocha": "2.2.41",
"istanbul-instrumenter-loader": "2.0.0",
"karma": "1.7.0",
"karma-coverage": "1.1.1",
"karma-coverage-istanbul-reporter": "1.3.0",
"karma-ie-launcher": "1.0.0",
"karma-firefox-launcher": "1.0.1",
"karma-chrome-launcher": "2.1.1",
"karma-htmlfile-reporter": "0.3.5",
"karma-mocha": "1.3.0",
"karma-sourcemap-loader": "0.3.7",
"karma-webpack": "2.0.3",
"@wildpeaks/eslint-config-esmodules-stage2": "2.3.0",
"eslint": "3.19.0",
"mocha": "3.4.2",
"webpack-bundle-analyzer": "2.8.2"
}
}