-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 861 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
{
"name": "unit-testing-angularjs-controller",
"version": "1.0.0",
"description": "A simple example of unit testing an AngularJS controller",
"main": "app.js",
"scripts": {
"test": "karma start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mcalthrop/unit-testing-angularjs-controller.git"
},
"author": "Matt Calthrop <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/mcalthrop/unit-testing-angularjs-controller/issues"
},
"homepage": "https://github.com/mcalthrop/unit-testing-angularjs-controller#readme",
"devDependencies": {
"angular-mocks": "^1.6.4",
"jasmine": "^2.5.3",
"karma": "^1.6.0",
"karma-chrome-launcher": "^2.0.0",
"karma-jasmine": "^1.1.0",
"karma-spec-reporter": "0.0.31"
},
"dependencies": {
"angular": "^1.6.4"
}
}