-
Notifications
You must be signed in to change notification settings - Fork 77
/
package.json
50 lines (50 loc) · 1.09 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
{
"name": "dco",
"private": true,
"version": "1.0.0",
"description": "a GitHub App that enforces the DCO on Pull Requests",
"author": "Brandon Keepers",
"license": "ISC",
"repository": "github:dcoapp/app",
"scripts": {
"start": "probot run ./index.js",
"test": "jest --coverage",
"posttest": "npm run lint",
"lint": "prettier --check '{lib,test,docs}/**/*.{js,json,md}' index.js *.md package.json app.yml",
"lint:fix": "prettier --write '{lib,test,docs}/**/*.{js,json,md}' index.js *.md package.json app.yml"
},
"engines": {
"node": ">=14"
},
"dependencies": {
"email-validator": "^2.0.3",
"prettier": "^2.5.1",
"probot": "^12.1.1"
},
"devDependencies": {
"jest": "^27.3.1",
"nock": "^13.2.0",
"smee-client": "^1.0.1"
},
"standard": {
"env": [
"jest"
]
},
"jest": {
"testEnvironment": "node",
"coverageThreshold": {
"global": {
"statements": 100,
"branches": 100,
"functions": 100,
"lines": 100
}
}
},
"release": {
"branches": [
"main"
]
}
}