-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.2 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 2.2 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "coverage-blamer",
"version": "0.1.9",
"description": "coverage-blamer is tool for get information about authors of uncovered code",
"main": "index.js",
"bin": {
"coverage-blamer": "./bin/coverage-blamer"
},
"scripts": {
"prepublish": "npm run snyk-protect; coffee -o lib -c src",
"test": "mocha --compilers coffee:coffee-script/register $(find test -name '*.coffee')",
"test-coverage": "./node_modules/coffee-coverage/bin/coffeecoverage --path relative src .tmp & COVERAGE=true ./node_modules/mocha/bin/mocha --compilers coffee:coffee-script/register -R json-cov $(find test -name '*.coffee') > coverage/coverage.json",
"ci": "./node_modules/coffee-coverage/bin/coffeecoverage --path relative src .tmp & COVERAGE=true ./node_modules/mocha/bin/mocha --compilers coffee:coffee-script/register -R mocha-phantom-coverage-reporter $(find test -name '*.coffee')",
"developing": "./node_modules/mocha/bin/mocha --compilers coffee:coffee-script/register --watch $(find test -name '*.coffee')",
"snyk-protect": "snyk protect"
},
"repository": {
"type": "git",
"url": "https://github.com/kucherenko/coverage-blamer.git"
},
"keywords": [
"code coverage",
"blame",
"code",
"coverage",
"tests",
"jscoverage",
"coffee-coverage",
"mocha",
"istanbul",
"nyc",
"jasmine"
],
"dependencies": {
"blamer": "^1.0.1",
"bluebird": "~3.0.x",
"cli-table": "^0.3.1",
"commander": "^2.6.x",
"glob": "^6.0.x",
"jade": "^1.11.0",
"kouto-swiss": "^0.13.0",
"lcov-parse": "^0.0.x",
"lodash": "~4.17.5",
"markdown-table": "^0.4.0",
"mkdirp": "^0.5.x",
"stylus": "^0.64.0",
"snyk": "^1.192.4"
},
"devDependencies": {
"mocha": "^2.3.x",
"chai": "^3.4.x",
"coffee-script": "~1.10.x",
"chai-as-promised": "^5.1.x",
"sinon": "^1.17.x",
"sinon-as-promised": "~4.0.x",
"sinon-chai": "~2.8.x",
"proxyquire": "^1.7.x",
"coveralls": "~2.11.x",
"jscoverage": "~0.6.x",
"coffee-coverage": "~0.7.x",
"mocha-phantom-coverage-reporter": "~0.1.x"
},
"preferGlobal": true,
"readmeFilename": "README.md",
"author": "Andrey Kucherenko",
"license": "MIT",
"snyk": true
}