-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1003 Bytes
/
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
{
"name": "gitterjs",
"version": "0.2.9",
"description": "Little git helper",
"homepage": "https://github.com/cope/gitterjs#readme",
"author": "Predrag Stojadinovic <[email protected]>",
"license": "UNLICENSED",
"repository": {
"type": "git",
"url": "git+https://github.com/cope/gitterjs.git"
},
"bugs": {
"url": "https://github.com/cope/gitterjs/issues"
},
"scripts": {
"test": "nyc --reporter=lcov --reporter=html mocha",
"coveralls": "cat ./coverage/lcov.info | node node_modules/.bin/coveralls",
"sonar": "sonarjs -e .sonarlint/**,node_modules/**,coverage/**,.nyc_output/**"
},
"keywords": [
"git"
],
"preferGlobal": true,
"bin": {
"gitterjs": "index.js",
"gitter": "index.js"
},
"dependencies": {
"bluebird": "^3.7.1",
"commander": "^4.0.0",
"lodash": "^4.17.15",
"moment": "^2.24.0",
"node-cmd": "^3.0.0"
},
"devDependencies": {
"chai": "^4.2.0",
"coveralls": "^3.0.7",
"mocha": "^6.2.2",
"nyc": "^14.1.1",
"sonarjs": "^1.0.0"
}
}