-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.08 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
{
"name": "three-types-bot",
"version": "1.0.0",
"private": true,
"description": "Helps create manage the three-types organization shared code",
"author": "Josh Ellis <joshua.ellis18@gmail.com>",
"license": "ISC",
"homepage": "https://github.com/joshuaellis/three-types-bot",
"keywords": [
"probot",
"github",
"probot-app"
],
"scripts": {
"build": "tsc",
"start": "probot run ./lib/index.js",
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watchAll"
},
"dependencies": {
"lodash": "^4.17.20",
"probot": "^11.0.1"
},
"devDependencies": {
"@types/jest": "^26.0.19",
"@types/lodash": "^4.14.168",
"@types/node": "^14.14.19",
"jest": "^26.6.3",
"nock": "^13.0.5",
"prettier": "^2.2.1",
"smee-client": "^1.2.2",
"ts-jest": "^26.4.4",
"typescript": "^4.1.3"
},
"engines": {
"node": ">= 10.13.0"
},
"jest": {
"testEnvironment": "node"
}
}