forked from benbria/coffee-coverage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.01 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
67
68
69
70
71
72
73
74
75
76
77
{
"name": "@danielx/coffeecoverage",
"description": "Istanbul and JSCoverage-style instrumentation for CoffeeScript files.",
"keywords": [
"javascript",
"coffeescript",
"coverage",
"code coverage",
"test",
"unit test",
"istanbul",
"jscoverage",
"coveralls"
],
"version": "4.0.0-pre.3",
"author": "Daniel X. Moore",
"contributors": [
"Daniel X Moore (https://danielx.net)",
"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/DanielXMoore/CoffeeCoverage.git"
},
"bin": {
"coffeeCoverage": "./bin/coffeecoverage"
},
"directories": {
"lib": "./lib"
},
"dependencies": {
"argparse": "^1.0.2",
"coffeescript": "2.6.1",
"lodash": "^4.14.0",
"minimatch": "^3.0.2"
},
"devDependencies": {
"benchmark": "^2.0.0",
"chai": "^3.0.0",
"coveralls": "^3.0.2",
"istanbul": "0.4.5",
"mocha": "^9.2.0",
"sinon": "^1.14.1"
},
"mocha": {
"extension": [
"coffee"
],
"require": [
"coffeescript/register",
"./register-istanbul"
],
"reporter": "spec",
"recursive": true,
"spec": [
"test"
]
},
"scripts": {
"prepare": "yarn build",
"test": "yarn build && mocha && istanbul report",
"coverage-report": "istanbul report text-summary lcov",
"build": "coffee --compile --output lib src",
"clean": "rm -rf lib coverage",
"distclean": "yarn clean && rm -rf node_modules"
}
}