-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 1.03 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
{
"name": "karma-jasmine-coverage-browserify",
"version": "0.1.0",
"repository": "https://github.com/claudiopro/karma-jasmine-coverage-browserify",
"description": "Boilerplate project with Karma, Jasmine, Browserify and code coverage",
"main": "index.js",
"scripts": {
"pretest": "npm install",
"test": "karma start test/karma.conf.js",
"pretest-single-run": "npm install",
"test-single-run": "karma start test/karma.conf.js --single-run",
"pretest-ci": "npm install",
"test-ci": "karma start test/karma.conf.js --single-run --browsers PhantomJS"
},
"author": "Claudio Procida",
"license": "MIT",
"devDependencies": {
"brfs": "^1.4.1",
"browserify-istanbul": "^0.2.1",
"jasmine-core": "^2.3.4",
"karma": "^0.13.9",
"karma-browserify": "^4.3.0",
"karma-chrome-launcher": "^0.2.0",
"karma-cli": "^0.1.0",
"karma-coverage": "^0.5.1",
"karma-jasmine": "^0.3.6",
"karma-junit-reporter": "^0.3.4",
"karma-phantomjs-launcher": "^0.2.1",
"phantomjs": "^1.9.18"
}
}