-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.3 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.3 KB
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
{
"name": "angularjs-es6-setup-webpack",
"version": "1.0.0",
"description": "Setup an angular js application with es6 support with webpack",
"engines": {
"node": ">=8.11.1",
"npm": "~v5.8.0"
},
"main": "webpack.config.js",
"dependencies": {
"angular": "1.6.10",
"angular-sanitize": "1.6.10"
},
"scripts": {
"dev": "webpack-dev-server --progress --open",
"build": "webpack -p",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"angularjs",
"angularjs_es6_setup_webpack_mocha",
"es6",
"mocha",
"unit_test",
"webpack"
],
"author": "MI RD",
"license": "ISC",
"devDependencies": {
"angular-mocks": "^1.6.10",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.4",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"baggage-loader": "^1.0.0",
"chai": "^4.1.2",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"karma": "^2.0.2",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-mocha": "^1.3.0",
"karma-webpack": "^3.0.0",
"mocha": "^5.1.1",
"ng-annotate-webpack-plugin": "^0.3.0",
"ngtemplate-loader": "^2.0.1",
"raw-loader": "^0.5.1",
"webpack": "^4.6.0",
"webpack-cli": "^2.0.15",
"webpack-dev-server": "^3.1.3"
}
}