-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.json
68 lines (68 loc) · 2.19 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
{
"name": "angular-js-es6-testing-example",
"version": "1.0.0",
"description": "Enhanced testing of Angular JS 1.X applications using ES6 modules",
"main": "src/app.js",
"scripts": {
"start": "cross-env NODE_ENV=DEV webpack-dev-server",
"build": "webpack --display-chunks --display-reasons --display-error-details --display-modules",
"dist": "cross-env NODE_ENV=DIST webpack",
"server_build": "node server.js",
"server_dist": "cross-env NODE_ENV=DIST node server.js",
"lint": "eslint src/",
"mocha": "mocha --compilers js:babel-register ./src/**/*.test.js",
"watch": "mocha --compilers js:babel-register -w ./src/**/*.test.js",
"karma": "karma start",
"test": "npm run lint && npm run mocha && karma start --single-run",
"ci": "npm run lint && npm run mocha && npm run dist"
},
"author": "[email protected]",
"license": "ISC",
"dependencies": {
"angular": "1.5",
"angular-animate": "1.5",
"angular-ui-bootstrap": "0.13.4",
"angular-ui-router": "0.2.15",
"bootstrap": "3.3.5",
"jquery": "2.1.4",
"lodash": "3.10.1"
},
"devDependencies": {
"angular-mocks": "1.5",
"awesome-typescript-loader": "0.11.3",
"babel-core": "^6.26.3",
"babel-loader": "6.2.1",
"babel-plugin-transform-runtime": "6.4.3",
"babel-preset-es2015": "6.3.13",
"babel-register": "^6.26.0",
"babel-runtime": "6.5",
"chai": "3.2.0",
"chalk": "1.1.0",
"clean-webpack-plugin": "0.1.3",
"connect": "^3.6.6",
"cross-env": "^3.1.3",
"css-loader": "0.15.6",
"eslint": "1.10.3",
"eslint-config-defaults": "8.0.2",
"file-loader": "0.8.4",
"html-loader": "^0.5.5",
"html-webpack-plugin": "2.24.1",
"jasmine-core": "2.3.4",
"karma": "0.13.19",
"karma-chrome-launcher": "0.2.0",
"karma-jasmine": "0.3.6",
"karma-mocha-reporter": "1.1.1",
"karma-webpack": "1.7.0",
"minimist": "1.1.3",
"mocha": "2.2.5",
"ngtemplate-loader": "1.3.0",
"open-browser-webpack-plugin": "0.0.5",
"serve-static": "^1.13.2",
"sinon": "1.17.1",
"style-loader": "0.12.3",
"typescript": "1.5.3",
"url-loader": "0.5.6",
"webpack": "1.10.5",
"webpack-dev-server": "1.10.1"
}
}