-
Notifications
You must be signed in to change notification settings - Fork 178
/
package.json
81 lines (81 loc) · 2.41 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "@repository-settings/app",
"version": "0.0.0-semantically-released",
"description": "Pull Requests for GitHub repository settings",
"repository": "github:repository-settings/app",
"type": "module",
"main": "./index.js",
"exports": "./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",
"lint:publish": "publint --strict",
"test:unit": "NODE_OPTIONS=--experimental-vm-modules NODE_NO_WARNINGS=1 jest 'test/unit/'",
"test:unit:watch": "npm run test:unit -- --watch",
"test:integration": "run-s 'test:integration:base -- --profile noWip'",
"test:integration:base": "NODE_OPTIONS=--enable-source-maps DEBUG=any cucumber-js test/integration",
"test:integration:debug": "DEBUG=test run-s test:integration",
"test:integration:wip": "run-s 'test:integration:base -- --profile wip'",
"test:integration:wip:debug": "DEBUG=test run-s 'test:integration:wip'",
"test:integration:focus": "run-s 'test:integration:base -- --profile focus'",
"generate:md": "remark . --output"
},
"author": "Brandon Keepers",
"license": "ISC",
"dependencies": {
"deep-equal": "2.2.3",
"deepmerge": "4.3.1",
"js-yaml": "4.1.0",
"probot": "13.3.9"
},
"devDependencies": {
"@cucumber/cucumber": "11.0.1",
"@form8ion/remark-preset": "1.0.4",
"@travi/any": "3.1.2",
"http-status-codes": "2.3.0",
"jest": "29.7.0",
"jest-when": "3.6.0",
"lockfile-lint": "4.14.0",
"ls-engines": "0.9.3",
"msw": "2.6.2",
"nodemon": "3.1.7",
"npm-run-all2": "7.0.1",
"prettier-standard": "16.4.1",
"publint": "0.2.12",
"smee-client": "2.0.4",
"standard": "17.1.2"
},
"standard": {
"env": [
"jest"
]
},
"engines": {
"node": "^18.17 || >=20.6.1"
},
"jest": {
"testEnvironment": "node"
},
"nodemonConfig": {
"exec": "npm start",
"watch": [
".env",
"."
]
},
"files": [
"index.js",
"lib/"
],
"publishConfig": {
"access": "public",
"provenance": true
},
"packageManager": "[email protected]"
}