forked from jdalt/angular-test-tool-box
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 679 Bytes
/
package.json
File metadata and controls
23 lines (23 loc) · 679 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "tool-box",
"version": "1.0.0",
"description": "A toolbox of useful providers for testing component based angular applications.",
"main": "index.js",
"scripts": {
"test": "./node_modules/karma/bin/karma start",
"testCi": "./node_modules/karma/bin/karma start --single-run --reporters dots,coverage"
},
"author": "Jacob Dalton",
"license": "ISC",
"devDependencies": {
"gulp": "^3.9.1",
"gulp-concat": "^2.6.0",
"gulp-ng-annotate": "^2.0.0",
"gulp-watch": "^4.3.8",
"jasmine-core": "^2.4.1",
"karma": "^1.1.1",
"karma-coverage": "^1.1.0",
"karma-jasmine": "^1.0.2",
"karma-phantomjs-launcher": "^1.0.1"
}
}