-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.48 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.48 KB
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
{
"name": "browserify-coffee-coverage",
"version": "2.0.0",
"description": "Browserify transform to instrument coffee src files with JSCoverage or Istanbul instrumentation",
"keywords": [
"istanbul",
"jscoverage",
"coverage",
"browserify",
"coffee-script"
],
"author": "Benbria (http://www.benbria.com/)",
"license": "MIT",
"contributors": [
"Calvin Wiebe (https://github.com/calvinwiebe)"
],
"repository": {
"type": "git",
"url": "https://github.com/benbria/browserify-coffee-coverage.git"
},
"dependencies": {
"coffee-coverage": "^2.0.1",
"coffee-script": ">=1.6.2",
"minimatch": "2.0.7",
"object-assign": "2.0.0",
"through": "2.3.8"
},
"devDependencies": {
"browserify": "^10.0.0",
"chai": "^2.3.0",
"istanbul": "^0.3.13",
"karma": "^0.12.31",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^0.1.8",
"karma-coverage": "0.2.5",
"karma-mocha": "^0.1.10",
"mocha": "^2.2.4"
},
"main": "index.js",
"scripts": {
"build-test": "mkdir -p build-test && ./node_modules/.bin/browserify -t [ ./index.js --instrumentor=istanbul ] karma-test/index.js -o ./build-test/bundle.js",
"test-i": "./node_modules/.bin/mocha mocha-test/**/*Test.js",
"test-k": "npm run build-test && ./node_modules/karma/bin/karma start --single-run && ./node_modules/.bin/mocha karma-test/verify.js && rm -rf coverage",
"test": "npm run test-i && npm run test-k"
},
"engines": {
"node": ">=0.10.0"
}
}