forked from mergeability/mergeable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.47 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
{
"name": "mergeable",
"version": "1.0.0",
"description": "",
"author": "Justin Law <[email protected]> (https://github.io/mergeability/mergeable), Shine Lee <[email protected]>",
"license": "AGPL-3.0-only",
"repository": "https://github.com/mergeability/mergeable.git",
"scripts": {
"dev": "NODE_ENV=development nodemon --exec 'npm start'",
"start": "probot run ./index.js",
"test": "NODE_ENV=test jest && standard",
"test:unit": "LOG_LEVEL=warn NODE_ENV=test jest __tests__/unit/* && standard",
"test:e2e": "LOG_LEVEL=warn NODE_ENV=test jest __tests__/e2e/* && standard",
"test-watch": "NODE_ENV=test jest --watch",
"test-coverage": "NODE_ENV=test standard && jest --collectCoverage && codecov",
"lint": "standard --fix"
},
"dependencies": {
"js-yaml": "^3.11.0",
"lodash": "^4.17.15",
"node-fetch": "^2.1.2",
"probot": "^9.6.6",
"probot-scheduler": "^2.0.0-beta.1",
"colors": "^1.3.2",
"minimatch": "^3.0.4"
},
"devDependencies": {
"codecov": "^3.1.0",
"jest": "^23.6.0",
"nock": "^11.7.2",
"nodemon": "^1.18.3",
"object-dot": "^1.7.0",
"smee-client": "^1.0.1",
"standard": "^10.0.3"
},
"engines": {
"node": ">= 7.7.0",
"npm": ">= 4.0.0"
},
"standard": {
"env": [
"jest"
]
},
"jest": {
"setupFiles": [
"./__fixtures__/setup/jestSetUp.js"
],
"coverageDirectory": "./coverage/",
"collectCoverageFrom": [
"lib/**/*.js"
]
}
}