forked from dcoapp/app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.43 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
{
"name": "dco",
"private": true,
"version": "1.1.0",
"description": "a GitHub App that enforces the DCO on Pull Requests",
"author": "Brandon Keepers",
"license": "ISC",
"repository": "github:hackworthltd/dcoapp",
"scripts": {
"start": "probot run ./app.js",
"build": "ncc build index.js -o dist",
"test": "jest --coverage",
"update-snapshots": "jest --updateSnapshot",
"format": "prettier --write .",
"lint": "eslint .",
"lint:fix": "eslint --fix ."
},
"engines": {
"node": ">=16",
"pnpm": "^8"
},
"dependencies": {
"@probot/adapter-github-actions": "^3.1.3",
"email-validator": "^2.0.4",
"probot": "^12.3.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.59.5",
"@typescript-eslint/parser": "^5.59.5",
"@vercel/ncc": "^0.36.1",
"eslint": "^8.40.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"jest": "^29.5.0",
"nock": "^13.3.1",
"pnpm": "^8.5.0",
"prettier": "^2.8.8",
"smee-client": "^1.2.3"
},
"standard": {
"env": [
"jest"
]
},
"jest": {
"testEnvironment": "node",
"coverageThreshold": {
"global": {
"statements": 100,
"branches": 100,
"functions": 100,
"lines": 100
}
}
},
"release": {
"branches": [
"main"
]
}
}