-
-
Notifications
You must be signed in to change notification settings - Fork 40
/
package.json
67 lines (67 loc) · 1.45 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
{
"name": "size",
"version": "1.1.0",
"description": "Applies size labels to Pull Requests",
"author": "Benji Visser <benji@093b.org>",
"license": "MIT",
"repository": "https://github.com/noqcks/size.git",
"homepage": "https://github.com/noqcks/size",
"bugs": "https://github.com/noqcks/size/issues",
"keywords": [
"probot",
"github",
"probot-app"
],
"scripts": {
"dev": "nodemon",
"start": "probot run ./src/index.js",
"lint": "standard --fix",
"test": "jest"
},
"dependencies": {
"@noqcks/generated": "^7.23.0",
"@probot/adapter-aws-lambda-serverless": "^3.0.2",
"@sentry/node": "^7.58.0",
"minimatch": "^5.1.6",
"probot": "^12.3.1",
"serverless": "^3.33.0"
},
"devDependencies": {
"eslint": "^8.26.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-import": "^2.26.0",
"jest": "^28.1.2",
"nock": "^13.2.8",
"nodemon": "^2.0.19",
"smee-client": "^1.2.3",
"standard": "^17.0.0"
},
"engines": {
"node": ">= 16.0.0"
},
"standard": {
"env": [
"jest"
]
},
"nodemonConfig": {
"exec": "npm start",
"watch": [
".env",
"."
]
},
"jest": {
"coverageDirectory": "./coverage/",
"testEnvironment": "node",
"collectCoverage": true,
"coverageThreshold": {
"global": {
"branches": 60,
"functions": 60,
"lines": 60
}
}
}
}