-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
56 lines (56 loc) · 1.67 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
{
"name": "angularjs-unit-testing-patterns",
"version": "1.0.0",
"description": "Opinionated AngularJS unit testing patterns using ES6, Webpack, Karma, Mocha, and Sinon",
"scripts": {
"test": "gulp github",
"build": "gulp webpack",
"start": "node src/server/hapi.js",
"karma": "karma start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rodoabad/angularjs-unit-testing-patterns.git"
},
"author": "Rodo Abad <[email protected]> (https://github.com/rodoabad)",
"license": "MIT",
"bugs": {
"url": "https://github.com/rodoabad/angularjs-unit-testing-patterns/issues"
},
"homepage": "https://github.com/rodoabad/angularjs-unit-testing-patterns#readme",
"dependencies": {
"angular": "^1.4.8",
"angular-ui-router": "^0.2.15"
},
"devDependencies": {
"angular-mocks": "^1.4.8",
"babel-core": "^6.2.1",
"babel-loader": "^6.2.0",
"babel-plugin-transform-runtime": "^6.1.18",
"babel-preset-es2015": "^6.1.18",
"chai": "^3.4.1",
"eslint": "^1.10.2",
"eslint-friendly-formatter": "^1.2.2",
"gulp": "^3.9.0",
"gulp-eslint": "^1.1.1",
"hapi": "^11.1.2",
"html-loader": "^0.4.0",
"inert": "^3.2.0",
"istanbul": "^0.4.1",
"karma": "^0.13.15",
"karma-chai": "^0.1.0",
"karma-coverage": "^0.5.3",
"karma-coveralls": "^1.1.2",
"karma-mocha": "^0.2.1",
"karma-mocha-reporter": "^1.1.3",
"karma-phantomjs-launcher": "^0.2.1",
"karma-sinon": "^1.0.4",
"karma-sourcemap-loader": "^0.3.6",
"karma-webpack": "^1.7.0",
"mocha": "^2.3.4",
"ng-annotate-loader": "0.0.10",
"phantomjs": "^1.9.19",
"sinon": "^1.17.2",
"webpack": "^1.12.9"
}
}