-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.56 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.56 KB
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
{
"name": "commit-cop",
"version": "1.0.0",
"description": "Enforces commit styling",
"author": "Kyle Scully <scullykns@gmail.com>",
"license": "ISC",
"keywords": [
"probot",
"github",
"probot-app"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"dev": "nodemon --exec \"probot run ./lib/index.js\"",
"prettier-check": "prettier --config package.json --list-different './**/*.ts'",
"prettier-format": "prettier --config package.json --write './**/*.ts'",
"receive": "node_modules/.bin/probot receive",
"test:watch": "jest --watch --notify --notifyMode=change --coverage",
"test": "jest"
},
"dependencies": {
"nock": "13.0.2",
"probot": "9.11.0",
"probot-serverless-now": "2.1.2",
"conventional-commit-types": "2.2.0"
},
"devDependencies": {
"@types/jest": "26.0.4",
"@types/node": "11.9.0",
"eslint-plugin-typescript": "0.14.0",
"jest": "27.3.1",
"nodemon": "1.17.2",
"prettier": "1.18.2",
"smee-client": "1.0.2",
"ts-jest": "27.0.7",
"typescript": "4.4.4",
"typescript-eslint-parser": "22.0.0"
},
"engines": {
"node": ">=14.x.x"
},
"standard": {
"parser": "typescript-eslint-parser",
"env": [
"jest"
],
"plugins": [
"typescript"
]
},
"jest": {
"testEnvironment": "node"
},
"prettier": {
"printWidth": 140,
"tabWidth": 4,
"useTabs": true,
"semi": true,
"singleQuote": true,
"trailingComma": "none",
"bracketSpacing": true,
"jsxBracketSameLine": true,
"arrowParens": "always"
}
}