-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.16 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.16 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
{
"name": "@maxdome/notify",
"version": "1.1.0",
"description": "Send CD / CI notifications from GitLab CI",
"main": "src/cli.js",
"scripts": {
"fmt": "maxdome-prettier",
"test": "NODE_ENV=test mocha './test/**/*.spec.js'",
"test:coverage": "nyc npm test"
},
"bin": {
"notify": "bin/notify"
},
"repository": {
"type": "git",
"url": "git+https://github.com/maxdome/notify.git"
},
"author": "Chris Neuhäuser <chris@type10.com> (http://type10.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/maxdome/notify/issues"
},
"homepage": "https://github.com/maxdome/notify#readme",
"engines": {
"node": ">= 6"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"commander": "^2.12.2",
"lodash.camelcase": "^4.3.0",
"node-fetch": "^2.1.1"
},
"devDependencies": {
"@maxdome/prettier": "^1.3.2",
"chai": "^4.1.2",
"mocha": "^4.1.0",
"mock-require": "^2.0.2",
"nyc": "^11.6.0",
"sinon": "^4.2.0",
"sinon-chai": "^2.14.0"
},
"nyc": {
"include": [
"src/**/*.js"
],
"reporter": [
"text",
"html"
],
"cache": true
}
}