forked from mattyboy/istanbul-slack-notify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.64 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
{
"name": "istanbul-slack-notify",
"version": "1.0.18",
"description": "Sends istanbul / jest coverage summary and git build details to Slack using a pass/fail threshold for project coverage.",
"main": "./bin/notify.js",
"scripts": {
"test": "npm run lint && npm run coverage && ./bin/notify.js",
"notify": "npm run test && ./bin/notify.js",
"lint": "./node_modules/.bin/eslint src/ test/",
"coverage": "./node_modules/.bin/jest --coverage",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
},
"bin": {
"istanbul-slack-notify": "./bin/notify.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mattyboy/istanbul-slack-notify.git"
},
"keywords": [
"slack",
"jest",
"coverage",
"istanbul"
],
"author": "Matt Weston",
"license": "MIT",
"bugs": {
"url": "https://github.com/mattyboy/istanbul-slack-notify/issues"
},
"homepage": "https://github.com/mattyboy/istanbul-slack-notify#readme",
"dependencies": {
"colors": "^1.1.2",
"es6-promise": "^4.1.0",
"istanbul": "^0.4.5",
"slack-node": "^0.1.8"
},
"devDependencies": {
"babel-preset-es2015": "^6.24.1",
"coveralls": "^2.13.1",
"eslint": "^3.19.0",
"jest": "^20.0.3"
},
"jest": {
"verbose": true,
"collectCoverage": true,
"collectCoverageFrom": [
"src/**"
],
"coverageReporters": [
"json",
"lcov",
"text-summary"
]
},
"coverage": {
"coverageFiles": [
"coverage/coverage-final.json"
],
"threshold": 100,
"repositoryUrl": "https://github.com/mattyboy/istanbul-slack-notify"
}
}