forked from benbria/coffee-coverage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.42 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
{
"name": "coffee-coverage",
"description": "JSCoverage-style instrumentation for CoffeeScript files.",
"keywords": [
"javascript",
"coffeescript",
"coverage",
"code coverage",
"test"
],
"version": "0.4.4",
"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)"
],
"licenses": [
{
"type": "MIT",
"url": "https://raw.github.com/benbria/coffee-coverage/master/LICENSE"
}
],
"main": "./lib/coffeeCoverage",
"repository": {
"type": "git",
"url": "https://github.com/benbria/coffee-coverage.git"
},
"bin": {
"coffeeCoverage": "./bin/coffeecoverage"
},
"directories": {
"lib": "./lib"
},
"dependencies": {
"argparse": "^0.1.16",
"coffee-script": ">=1.6.2",
"pkginfo": ">=0.2.3"
},
"devDependencies": {
"mocha": "^2.1.0"
},
"scripts": {
"prepublish": "coffee -c -o lib src",
"test": "mocha"
},
"engines": {
"node": ">=0.6.19"
}
}