forked from github/safe-settings
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.83 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
{
"name": "safe-settings",
"version": "0.1.0-rc.26",
"description": "",
"repository": "https://github.com/github/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.1",
"deepmerge": "^4.2.2",
"eta": "^2.0.1",
"js-yaml": "^4.1.0",
"node-cron": "^3.0.2",
"probot": "^12.3.0"
},
"devDependencies": {
"@travi/any": "^2.1.5",
"check-engine": "^1.10.1",
"eslint": "^8.37.0",
"@eslint/eslintrc": "^2.0.2",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"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.1",
"lockfile-lint": "^4.10.1",
"nock": "^13.2.9",
"nodemon": "^2.0.22",
"npm-run-all": "^4.1.5",
"smee-client": "^1.2.2",
"standard": "^17.0.0"
},
"standard": {
"env": [
"jest"
]
},
"engines": {
"node": ">= 16.0.0"
},
"jest": {
"testEnvironment": "node"
},
"nodemonConfig": {
"exec": "npm start",
"watch": [
".env",
"."
]
}
}