forked from repository-settings/app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.35 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
{
"name": "probot-settings",
"version": "1.0.0",
"description": "",
"repository": "https://github.com/probot/settings.git",
"main": "index.js",
"scripts": {
"dev": "nodemon",
"start": "probot run ./index.js",
"test": "npm-run-all --print-label --parallel lint:* --parallel test:*",
"lint:js": "standard",
"lint:lockfile": "lockfile-lint --path package-lock.json --type npm --validate-https --allowed-hosts npm",
"lint:engines": "check-engine",
"test:unit": "jest 'test/unit/'",
"test:unit:watch": "npm run test:unit -- --watch",
"test:integration": "jest 'test/integration/'",
"test:integration:debug": "LOG_LEVEL=debug DEBUG=nock run-s test:integration"
},
"author": "Brandon Keepers",
"license": "ISC",
"dependencies": {
"deepmerge": "^4.1.0",
"js-yaml": "^3.13.1",
"probot": "9.11.3"
},
"devDependencies": {
"check-engine": "^1.8.1",
"http-status-codes": "^1.4.0",
"jest": "^24.9.0",
"lockfile-lint": "^4.0.0",
"nock": "^12.0.0",
"nodemon": "^2.0.0",
"npm-run-all": "^4.1.5",
"smee-client": "^1.0.2",
"standard": "^14.3.1"
},
"standard": {
"env": [
"jest"
]
},
"engines": {
"node": ">= 12.14.1"
},
"jest": {
"testEnvironment": "node"
},
"nodemonConfig": {
"exec": "npm start",
"watch": [
".env",
"."
]
}
}