-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
71 lines (71 loc) · 1.97 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
{
"name": "safe-settings-modified",
"version": "1.0",
"description": "Updated from GitHub Safe-Settings to include version updates and security fixes as of Nov 29, 2023.",
"repository": "https://github.com/ocpdude/safe-settings.git",
"main": "index.js",
"scripts": {
"dev": "nodemon --inspect",
"start": "probot run ./index.js",
"test": "npm-run-all --print-label --parallel lint:* --parallel test:*",
"lint:es": "eslint .",
"lint:js": "standard",
"lint:lockfile": "lockfile-lint --path package-lock.json --type npm --validate-https --allowed-hosts npm",
"lint:engines": "check-engine",
"lint:peer": "npm ls >/dev/null",
"test:unit": "jest 'test/unit/'",
"test:me": "jest ",
"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": "Yadhav Jayaraman",
"license": "ISC",
"dependencies": {
"@probot/adapter-aws-lambda-serverless": "^3.0.2",
"deepmerge": "^4.3.1",
"eta": "^3.0.3",
"js-yaml": "^4.1.0",
"node-cron": "^3.0.2",
"octokit": "^3.1.0",
"probot": "^13.0.1"
},
"devDependencies": {
"@eslint/eslintrc": "^3.0.0",
"@travi/any": "^3.1.0",
"check-engine": "^1.10.1",
"eslint": "^8.46.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.1",
"http-status-codes": "^2.2.0",
"jest": "^29.5.0",
"jest-when": "^3.5.2",
"lockfile-lint": "^4.13.2",
"tar": "^7.0.1",
"nock": "^13.2.9",
"nodemon": "^3.0.1",
"npm-run-all": "^4.1.5",
"smee-client": "^2.0.1",
"standard": "^17.0.0"
},
"standard": {
"env": [
"jest"
]
},
"engines": {
"node": ">= 16.0.0"
},
"jest": {
"testEnvironment": "node"
},
"nodemonConfig": {
"exec": "npm start",
"watch": [
".env",
"."
]
}
}