-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
71 lines (71 loc) · 1.7 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
{
"name": "create-check",
"version": "0.6.40",
"description": "Create a GitHub check + annotation.",
"license": "MIT",
"repository": "[email protected]:hipstersmoothie/create-check.git",
"author": "Andrew Lisowski <[email protected]>",
"main": "dist/index.js",
"scripts": {
"build": "tsc -p tsconfig.json",
"start": "yarn build --watch",
"lint": "eslint src --ext .ts,.js",
"release": "auto shipit"
},
"keywords": [
"formatter",
"reporter",
"lint",
"validate",
"github",
"annotations",
"checks"
],
"files": [
"dist"
],
"dependencies": {
"@octokit/app": "^4.2.1",
"@octokit/rest": "^18.0.6",
"await-to-js": "^2.1.1",
"env-ci": "^5.0.0",
"execa": "^4.0.0",
"lodash.chunk": "^4.2.0"
},
"devDependencies": {
"@auto-canary/auto": "9.19.3-canary.b6cdc759.0",
"@types/env-ci": "3.1.0",
"@types/eslint": "6.8.0",
"@types/lodash.chunk": "4.2.6",
"@types/lru-cache": "5.1.0",
"@types/stylelint": "9.10.1",
"@typescript-eslint/eslint-plugin": "2.31.0",
"@typescript-eslint/parser": "2.31.0",
"dotenv": "^8.2.0",
"eslint": "7.0.0",
"eslint-config-airbnb-base": "14.1.0",
"eslint-config-prettier": "6.11.0",
"eslint-config-xo": "0.29.1",
"eslint-plugin-import": "2.20.2",
"eslint-plugin-jsdoc": "25.2.0",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-prettier": "3.1.3",
"husky": "4.2.5",
"lint-staged": "10.0.8",
"prettier": "2.0.5",
"strip-ansi": "6.0.0",
"typescript": "^4.1.5"
},
"ava": {
"serial": true
},
"lint-staged": {
"*.{js,css,md}": [
"prettier --write",
"git add"
]
},
"prettier": {
"singleQuote": true
}
}