-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 1006 Bytes
/
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
{
"name": "webpack-angular-karma-setup",
"version": "0.0.1",
"description": "Base project with configuration files",
"main": "/",
"scripts": {
"build": "bash -c 'NODE_ENV=production webpack'",
"build-dev": "webpack",
"clean": "bash -c 'rm -rf dist'",
"test": "node_modules/.bin/karma start karma.conf.js",
"test-single": "node_modules/.bin/karma start karma.conf.js --single-run"
},
"author": "Leung Wong <[email protected]",
"license": "ISC",
"devDependencies": {
"angular": "^1.5.6",
"angular-mocks": "^1.5.6",
"copy-webpack-plugin": "^3.0.1",
"css-loader": "^0.25.0",
"extract-text-webpack-plugin": "^1.0.1",
"jasmine-core": "^2.4.1",
"karma": "^1.3.0",
"karma-jasmine": "^1.0.2",
"karma-phantomjs-launcher": "^1.0.0",
"karma-webpack": "^1.6.0",
"less": "^2.7.1",
"less-loader": "^2.2.3",
"phantomjs-prebuilt": "^2.1.7",
"ts-loader": "^0.8.2",
"typescript": "^2.0.3",
"webpack": "^1.13.2"
}
}