-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.38 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
{
"name": "awesome-tool",
"version": "1.0.0",
"private": true,
"description": "A bot that automates the process of synchronizing and managing GitHub PRs with Monday.com Tasks",
"author": "Arnold Duan <Chengzhu.Duan@gmail.com>",
"license": "ISC",
"repository": "https://github.com/TritonSE/awesome-tool.git",
"homepage": "https://github.com/TritonSE/awesome-tool",
"bugs": "https://github.com/TritonSE/awesome-tool/issues",
"keywords": [
"probot",
"github",
"probot-app"
],
"scripts": {
"build": "tsc",
"start": "probot run ./lib/index.js",
"dev": "nodemon --exec \"npm run build && npm start\"",
"lint": "eslint . --fix --ext .ts",
"test": "jest"
},
"dependencies": {
"node-fetch": "^2.6.1",
"probot": "^10.9.3"
},
"devDependencies": {
"@types/jest": "^26.0.9",
"@types/nock": "^11.1.0",
"@types/node": "^14.14.3",
"@types/node-fetch": "^2.5.7",
"@typescript-eslint/eslint-plugin": "^4.5.0",
"@typescript-eslint/parser": "^3.10.1",
"eslint": "^7.11.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-typescript": "^0.14.0",
"jest": "^26.4.0",
"nock": "^13.0.4",
"nodemon": "^2.0.5",
"prettier": "2.1.2",
"smee-client": "^1.1.0",
"ts-jest": "^26.2.0",
"typescript": "^3.9.7"
},
"engines": {
"node": ">= 10.13.0"
},
"jest": {
"testEnvironment": "node"
}
}