forked from bcgov/repomountie
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.24 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
{
"name": "repomountie",
"version": "0.3.1",
"description": "A bot to help ensure cultural niceties are respected.",
"author": "Jason C. Leach <[email protected]>",
"license": "Apache-2.0",
"repository": "https://github.com/bcgov/repomountie.git",
"homepage": "https://github.com/bcgov/repomountie",
"bugs": "https://github.com/bcgov/repomountie/issues",
"keywords": [
"probot",
"github",
"probot-app"
],
"scripts": {
"build": "NODE_ENV=production gulp",
"dev": "nodemon --watch src --inspect=5858 -e ts,tsx --exec node -r ts-node/register ./src/main.ts",
"start": "probot run ./build/index.js",
"report": "ts-node scripts/report.ts",
"test:lint": "NODE_ENV=test eslint src/**/*.ts",
"test": "NODE_ENV=test jest __tests__",
"test:coverage": "NODE_ENV=test jest --coverage",
"test:watch": "NODE_ENV=test jest --watch --notify --notifyMode=change --coverage"
},
"dependencies": {
"@bcgov/common-nodejs-utils": "^0.1.22",
"dotenv": "^8.0.0",
"js-yaml": "^3.14.0",
"lodash": "^4.17.19",
"nconf": "^0.10.0",
"passport": "^0.4.1",
"passport-jwt": "^4.0.0",
"probot": "^9.11.5",
"probot-scheduler": "^2.0.0-beta.1",
"transform-runtime": "0.0.0"
},
"devDependencies": {
"@types/dotenv": "^8.2.0",
"@types/jest": "^26.0.4",
"@types/nconf": "0.10.0",
"@types/node": "^14.0.20",
"@typescript-eslint/eslint-plugin": "^4.23.0",
"@typescript-eslint/parser": "^4.23.0",
"csv": "^5.3.2",
"eslint": "^7.26.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"gulp": "^4.0.2",
"gulp-clean": "^0.4.0",
"gulp-sourcemaps": "^2.6.5",
"gulp-typescript": "^6.0.0-alpha.1",
"husky": "^4.3.0",
"jest": "^26.1.0",
"lint-staged": "^10.4.0",
"nodemon": "^2.0.4",
"prettier": "^2.3.0",
"smee-client": "^1.1.0",
"standard": "^14.3.4",
"supertest": "^4.0.2",
"ts-jest": "^26.1.1",
"ts-node": "^8.10.2",
"typescript": "^3.9.6"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"./src/**/*.ts": [
"npx prettier ./src/**/*.ts --write",
"eslint ./src/**/*.ts --fix"
]
},
"engines": {
"node": ">= 12.16.3"
}
}