-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 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
{
"name": "weak",
"version": "1.0.0",
"description": "Webpack Eslint Angular Karma",
"scripts": {
"builddebug": "webpack --config webpack.debug.config.js",
"buildrelease": "webpack -p --config webpack.release.config.js",
"serve": "npm run builddebug && webpack-dev-server --progress -d --colors --config webpack.debug.config.js --content-base debug/",
"testwatch": "karma start karma.watch.config.js",
"test": "karma start karma.config.js",
"start": "npm run testwatch & npm run serve"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bartw/weak.git"
},
"author": "Bart Wijnants",
"bugs": {
"url": "https://github.com/bartw/weak/issues"
},
"homepage": "https://github.com/bartw/weak#readme",
"dependencies": {
"angular": "^1.5.6"
},
"devDependencies": {
"angular-mocks": "^1.5.6",
"css-loader": "^0.23.1",
"eslint": "^2.11.1",
"eslint-config-angular": "^0.5.0",
"eslint-loader": "^1.3.0",
"eslint-plugin-angular": "^1.0.1",
"html-webpack-plugin": "^2.20.0",
"jasmine-core": "^2.4.1",
"karma": "^0.13.22",
"karma-cli": "^1.0.0",
"karma-jasmine": "^1.0.2",
"karma-phantomjs-launcher": "^1.0.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.7.0",
"less": "^2.7.1",
"less-loader": "^2.2.3",
"phantomjs-prebuilt": "^2.1.7",
"raw-loader": "^0.5.1",
"style-loader": "^0.13.1",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.14.1"
}
}