This repository has been archived by the owner on Feb 23, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 2.56 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "autobot",
"version": "1.0.0",
"description": "A GitHub app to add extra features to auto",
"author": "Zephraph <zephraph@gmail.com>",
"license": "ISC",
"repository": "https://github.com//autobot.git",
"homepage": "https://github.com//autobot",
"bugs": "https://github.com//autobot/issues",
"keywords": [
"probot",
"github",
"probot-app"
],
"scripts": {
"clean": "(rm lib/{,**/}*.js* || true) && (rm lib/{,**/}*.d.ts || true)",
"compile": "tsc -p tsconfig.json",
"lint": "eslint --quiet --ignore-pattern \"*.d.ts\" lib/**/*.ts",
"type-check": "tsc --pretty --noEmit",
"pretest": "yarn clean",
"test": "jest",
"test:watch": "jest --watch --notify --notifyMode=change --coverage",
"postinstall": "patch-package"
},
"dependencies": {
"@primer/octicons": "^9.1.1",
"auto": "^4.8.13",
"await-to-js": "^2.1.1",
"axios": "^0.18.0",
"color-composite": "^0.1.0",
"dedent": "^0.7.0",
"lodash": "^4.17.15",
"micro": "^9.3.4",
"opentype.js": "^1.1.0",
"pino": "^5.13.1",
"probot": "^9.2.20",
"probot-serverless-now": "^2.0.0",
"random-color": "^1.0.1",
"slugify": "^1.3.4",
"wcag-contrast": "^2.1.1"
},
"devDependencies": {
"@now/node": "^0.10.1",
"@types/dedent": "^0.7.0",
"@types/jest": "^24.0.16",
"@types/lodash": "^4.14.129",
"@types/micro": "^7.3.3",
"@types/nock": "^9.3.0",
"@types/node": "^11.9.0",
"@types/node-fetch": "^2.3.7",
"@types/opentype.js": "^0.7.2",
"@types/pino": "^5.8.7",
"@types/wcag-contrast": "^2.1.0",
"@typescript-eslint/eslint-plugin": "^1.13.0",
"@typescript-eslint/parser": "^1.13.0",
"deepmerge": "^4.0.0",
"eslint": "^6.1.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-typescript": "^0.14.0",
"husky": "^3.0.2",
"jest": "^24.0.0",
"jest-junit": "^7.0.0",
"lint-staged": "^9.2.1",
"nock": "^10.0.6",
"node-fetch": "^2.6.0",
"nodemon": "^1.17.2",
"npm-run-all": "^4.1.5",
"patch-package": "^6.1.2",
"pino-pretty": "^3.1.0",
"prettier": "^1.16.4",
"smee-client": "^1.0.2",
"ts-jest": "^24.0.0",
"typescript": "^3.5.1",
"typescript-eslint-parser": "^22.0.0"
},
"engines": {
"node": ">= 8.3.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "yarn run type-check"
}
},
"lint-staged": {
"*.@(ts|tsx)": [
"eslint --fix",
"prettier --write",
"git add"
],
"*.json": [
"prettier --write"
]
}
}