-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.24 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
{
"dependencies": {
"chalk": "^2.3.2",
"commander": "^3.0.0",
"inquirer": "^6.5.1",
"node-fetch": "^2.6.7",
"ora": "^3.4.0",
"query-string": "^6.0.0",
"ramda": "^0.26.1"
},
"name": "@pindakaasman/mergify",
"repository": "https://github.com/RamonGebben/mergify.git",
"version": "0.3.3",
"description": "Gitlab CLI for viewing merge requests\"",
"main": "index.js",
"bin": {
"mergify": "index.js"
},
"directories": {
"lib": "lib"
},
"devDependencies": {
"eslint": "^6.1.0",
"eslint-config-standard": "^13.0.1",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.0",
"jest": "^24.8.0",
"jest-fetch-mock": "^2.1.2",
"mock-fs": "^4.4.2"
},
"scripts": {
"test": "jest --coverage --silent=false",
"test-travis": "yarn test && cat ./coverage/lcov.info | coveralls"
},
"author": "Ramon Gebben <ramon@sensorfact.nl>",
"contributors": [
{
"name": "Julien Lengrand-Lambert <julien@lengrand.fr> - @jlengrand"
}
],
"license": "MIT",
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true,
"setupFiles": [
"./setupJest.js"
]
}
}