-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
66 lines (66 loc) · 1.92 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "coffee-coverage",
"description": "Istanbul and JSCoverage-style instrumentation for CoffeeScript files.",
"keywords": [
"javascript",
"coffeescript",
"coverage",
"code coverage",
"test",
"unit test",
"istanbul",
"jscoverage",
"coveralls"
],
"version": "0.0.0-semantic-release",
"author": "Benbria (http://www.benbria.com/)",
"contributors": [
"Jason Walton <[email protected]> (https://github.com/jwalton)",
"Carsten Klein (https://github.com/silkentrance)",
"Drew Stokes <[email protected]> (https://github.com/dstokes)",
"Vyacheslav Slinko <[email protected]> (https://github.com/vslinko)",
"David Dahl (https://github.com/effata)",
"David Kirstein (https://github.com/frozenice-)",
"Dmitry Petrov (https://github.com/can3p)",
"Devon Govett (https://github.com/devongovett)",
"Emanuele Tamponi (https://glitch.com/@etamponi)"
],
"license": "MIT",
"main": "./lib/index",
"repository": {
"type": "git",
"url": "https://github.com/benbria/coffee-coverage.git"
},
"bin": {
"coffeeCoverage": "./bin/coffeecoverage"
},
"directories": {
"lib": "./lib"
},
"dependencies": {
"argparse": "^1.0.2",
"coffeescript": "^2.0.2",
"lodash": "^4.14.0",
"minimatch": "^3.0.2",
"pkginfo": ">=0.2.3"
},
"devDependencies": {
"@benbria/semantic-release-config": "^1.0.0",
"benchmark": "^2.0.0",
"chai": "^3.0.0",
"coveralls": "^3.0.2",
"istanbul": "^0.4.4",
"mocha": "^5.2.0",
"semantic-release": "^15.12.5",
"sinon": "^1.14.1"
},
"scripts": {
"prepare": "npm run build",
"test": "npm run build && mocha && istanbul report",
"coverage-report": "istanbul report text-summary lcov",
"build": "coffee -c -o lib src",
"clean": "rm -rf lib coverage",
"distclean": "npm run clean && rm -rf node_modules",
"semantic-release": "semantic-release"
}
}