-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.96 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
{
"name": "unity-push-checker",
"version": "1.0.0",
"private": true,
"description": "A Github bot plug in that will check for Unity file changes and present it into bullet-points",
"author": "Hoon Kim <[email protected]>",
"license": "Apache License",
"repository": "https://github.com/hoonsubin/unity-push-checker.git",
"homepage": "https://github.com/hoonsubin/unity-push-checker",
"bugs": "https://github.com/hoonsubin/unity-push-checker/issues",
"keywords": [
"probot",
"github",
"probot-app",
"unity"
],
"scripts": {
"start": "yarn run build && probot run ./lib/index.js",
"build": "tsc && ts-node-dev -r dotenv/config scripts/build.ts",
"build:watch": "tsc && (tsc -w --preserveWatchOutput & nodemon)",
"dev": "yarn build:watch",
"lint": "eslint '*/**/*.ts' --fix",
"deploy": "yarn run build && dotenv -- npx glitch-deploy-tool from-local -p './lib'",
"test": "export DEBUG=nock.* && jest && eslint '*/**/*.ts'",
"test:watch": "jest --watch --notify --notifyMode=change --coverage"
},
"dependencies": {
"lodash": "^4.17.20",
"probot": "^11.0.5"
},
"devDependencies": {
"@octokit/types": "^6.4.0",
"@types/jest": "^26.0.20",
"@types/lodash": "^4.14.168",
"@types/node": "^14.14.22",
"@typescript-eslint/eslint-plugin": "^4.14.0",
"@typescript-eslint/parser": "^4.14.0",
"dotenv-cli": "^4.0.0",
"eslint": "^7.18.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-prettier": "^3.3.1",
"jest": "^26.6.3",
"nock": "^13.0.6",
"nodemon": "^2.0.7",
"prettier": "^2.2.1",
"smee-client": "^1.2.2",
"ts-jest": "^26.4.4",
"ts-node-dev": "^1.1.1",
"typescript": "^4.1.3"
},
"engines": {
"node": ">=14.x"
},
"jest": {
"testEnvironment": "node"
}
}