-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 798 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 798 Bytes
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
{
"name": "tool-box",
"version": "1.0.0",
"description": "A toolbox of useful providers for testing component based angular applications.",
"main": "index.js",
"scripts": {
"build": "gulp build",
"setup": "npm install -g bower && npm install -g gulp && npm install && bower install",
"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"
}
}