This repository has been archived by the owner on Aug 26, 2021. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
77 lines (77 loc) · 2 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
{
"name": "opencollective-bot",
"version": "0.0.0-semantic-release",
"main": "index.js",
"scripts": {
"clean": "rimraf dist coverage",
"dev": "nodemon --exec dotenv ts-node ./dev-server.ts",
"test": "NODE_ENV=test jest",
"coverage": "yarn codecov",
"build": "tsc",
"start": "probot run ./dist/index.js",
"deploy:staging": "vercel",
"deploy:production": "vercel --prod",
"prettier": "prettier \"*.@(ts|js|json|md)\" \"src/**/*.@(ts)\" \"tests/**/*.@(ts)\"",
"prettier:write": "npm run prettier -- --write",
"prettier:check": "npm run prettier -- --check"
},
"engines": {
"node": "12.x"
},
"dependencies": {
"@hapi/joi": "17.1.1",
"@octokit/rest": "16.36.0",
"body-parser": "1.19.0",
"detect-indent": "6.0.0",
"express": "4.17.1",
"js-yaml": "3.14.1",
"lodash": "4.17.21",
"multilines": "1.0.3",
"node-fetch": "2.6.1",
"probot": "9.9.1",
"probot-serverless-now": "2.1.2"
},
"devDependencies": {
"@types/body-parser": "1.19.0",
"@types/btoa": "1.2.3",
"@types/bunyan": "1.8.6",
"@types/express": "4.17.3",
"@types/hapi__joi": "17.1.6",
"@types/ioredis": "4.19.4",
"@types/jest": "26.0.22",
"@types/js-yaml": "3.12.2",
"@types/lodash": "4.14.168",
"@types/lru-cache": "5.1.0",
"@types/nock": "11.1.0",
"@types/node": "14.14.31",
"@types/node-fetch": "2.5.10",
"@types/request-promise-native": "1.0.17",
"btoa": "1.2.1",
"codecov": "3.8.1",
"dotenv-cli": "4.0.0",
"husky": "4.3.6",
"jest": "26.6.3",
"lint-staged": "10.5.4",
"nock": "13.0.5",
"nodemon": "2.0.7",
"prettier": "2.2.1",
"request": "2.88.2",
"request-promise-native": "1.0.9",
"rimraf": "3.0.2",
"ts-jest": "26.4.4",
"ts-node": "9.1.1",
"typescript": "4.1.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,js,json,md}": [
"prettier --write",
"git add"
]
},
"license": "MIT"
}