forked from repository-settings/app
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.57 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
58
59
60
61
{
"name": "repository-settings",
"version": "0.0.0-semantically-released",
"private": true,
"description": "",
"repository": "github:repository-settings/app",
"main": "index.js",
"scripts": {
"dev": "nodemon",
"start": "probot run ./index.js",
"test": "npm-run-all --print-label --parallel lint:* --parallel test:*",
"lint:js": "prettier-standard --lint --check",
"lint:js:fix": "prettier-standard --format --lint",
"lint:lockfile": "lockfile-lint --path package-lock.json --type npm --validate-https --allowed-hosts npm",
"lint:engines": "ls-engines",
"lint:peer": "npm ls >/dev/null",
"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.3.1",
"js-yaml": "4.1.0",
"probot": "12.3.3"
},
"devDependencies": {
"@travi/any": "3.0.2",
"http-status-codes": "2.3.0",
"jest": "29.7.0",
"jest-when": "3.6.0",
"lockfile-lint": "4.12.1",
"ls-engines": "0.9.1",
"nock": "13.4.0",
"nodemon": "3.0.2",
"npm-run-all2": "6.1.1",
"prettier-standard": "16.4.1",
"smee-client": "2.0.0",
"standard": "17.1.0"
},
"standard": {
"env": [
"jest"
]
},
"engines": {
"node": ">=16"
},
"jest": {
"testEnvironment": "node"
},
"nodemonConfig": {
"exec": "npm start",
"watch": [
".env",
"."
]
}
}