-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
58 lines (58 loc) · 1.64 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
{
"name": "deploy-tron",
"version": "1.0.0",
"private": true,
"description": "A custom CI-CD bot",
"author": "Patrick Simonian <[email protected]>",
"license": "ISC",
"repository": "https://github.com/patricksimonian/digital.gov.bc.ca.git",
"homepage": "https://github.com/patricksimonian/digital.gov.bc.ca",
"bugs": "https://github.com/patricksimonian/digital.gov.bc.ca/issues",
"keywords": [
"probot",
"github",
"probot-app"
],
"scripts": {
"build": "tsc",
"build:watch": "tsc && (tsc -w --preserveWatchOutput & nodemon)",
"dev": "npm run build:watch",
"start": "probot run ./lib/index.js",
"lint": "eslint **/*.ts --fix",
"test": "jest --coverage && eslint **/*.ts",
"test:watch": "jest --watch --notify --notifyMode=change --coverage"
},
"dependencies": {
"axios": "^0.21.1",
"handlebars": "^4.7.6",
"minimist": "^1.2.5",
"probot": "^11.0.5"
},
"devDependencies": {
"@types/jest": "^25.2.3",
"@types/minimist": "^1.2.0",
"@types/nock": "^11.1.0",
"@types/node": "^13.1.0",
"@typescript-eslint/eslint-plugin": "^3.9.1",
"@typescript-eslint/parser": "^3.9.1",
"eslint": "^7.6.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-jest": "^23.20.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-typescript": "^0.14.0",
"jest": "^24.9.0",
"nock": "^12.0.0",
"nodemon": "^2.0.0",
"prettier": "^2.0.5",
"smee-client": "^1.1.0",
"ts-jest": "^25.1.0",
"typescript": "^3.6.4"
},
"engines": {
"node": ">= 8.3.0"
},
"jest": {
"testEnvironment": "node"
}
}