forked from mergeability/mergeable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.58 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
{
"name": "mergeable",
"version": "1.0.0",
"description": "",
"author": "Justin Law <hello@justinlaw.org> (https://github.io/mergeability/mergeable), Shine Lee <aungshine@gmail.com>",
"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",
"stacker-postinstall": "bash stacker-deploy.sh"
},
"dependencies": {
"colors": "^1.3.2",
"js-yaml": "^3.11.0",
"lodash": "^4.17.16",
"minimatch": "^3.0.4",
"moment-timezone": "^0.5.31",
"node-fetch": "^2.1.2",
"probot": "^9.11.3",
"probot-scheduler": "^2.0.0-beta.1"
},
"devDependencies": {
"codecov": "^3.7.2",
"handlebars": "^4.7.6",
"jest": "^24.0.0",
"nock": "^11.7.2",
"nodemon": "^2.0.3",
"object-dot": "^1.7.0",
"smee-client": "^1.0.1",
"standard": "^11.0.0"
},
"engines": {
"node": ">= 13.7.0",
"npm": ">= 4.4"
},
"standard": {
"env": [
"jest"
]
},
"jest": {
"setupFiles": [
"./__fixtures__/setup/jestSetUp.js"
],
"coverageDirectory": "./coverage/",
"collectCoverageFrom": [
"lib/**/*.js"
]
}
}