-
Notifications
You must be signed in to change notification settings - Fork 147
/
package.json
87 lines (87 loc) · 2.39 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
82
83
84
85
86
87
{
"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 --roots=lib --roots=test/unit",
"test:unit:ci": "npm run test:unit --reporters=default --reporters=github-actions",
"test:me": "jest ",
"test:unit:watch": "npm run test:unit -- --watch",
"test:integration": "jest --roots=lib --roots=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",
"lodash": "^4.17.21",
"node-cron": "^3.0.2",
"octokit": "^3.1.2",
"probot": "^12.3.3"
},
"devDependencies": {
"@eslint/eslintrc": "^2.0.2",
"@travi/any": "^2.1.8",
"check-engine": "^1.10.1",
"eslint": "^8.46.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.1",
"http-status-codes": "^2.2.0",
"jest": "^29.5.0",
"jest-junit": "^16.0.0",
"jest-when": "^3.5.2",
"lockfile-lint": "^4.12.1",
"nock": "^13.5.4",
"nodemon": "^2.0.22",
"npm-run-all": "^4.1.5",
"smee-client": "^1.2.2",
"standard": "^17.1.0"
},
"standard": {
"env": [
"jest"
]
},
"engines": {
"node": ">= 16.0.0"
},
"jest": {
"testEnvironment": "node",
"reporters": [
"default",
"jest-junit"
]
},
"jest-junit": {
"suiteName": "jest tests",
"outputDirectory": "reports",
"outputName": "jest-junit.xml",
"uniqueOutputName": "false",
"classNameTemplate": "{classname}-{title}",
"titleTemplate": "{classname}-{title}",
"ancestorSeparator": " › ",
"usePathForSuiteName": "true"
},
"nodemonConfig": {
"exec": "npm start",
"watch": [
".env",
"."
]
}
}