-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
79 lines (79 loc) · 2.37 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
79
{
"name": "gns",
"version": "1.0.0",
"description": "A Probot app",
"author": "Hellomouse LTD",
"contributors": [
"Bradley \"BWBellairs\" Bellairs <BWBellairs@outlook.com>",
"wolfy1339 <webmaster@wolfy1339.com>"
],
"license": "MIT",
"repository": "https://github.com/hellomouse/GNS.git",
"homepage": "https://github.com/hellomouse/GNS",
"bugs": "https://github.com/hellomouse/GNS/issues",
"keywords": [
"probot",
"github",
"probot-app"
],
"scripts": {
"dev": "nodemon -w ./bot/ -i bot/lib/ --exec \"npm start\"",
"build": "tsc -p bot/tsconfig.json && cp bot/labels.js bot/lib/labels.js",
"start": "npm run build && cd bot && probot run -p 5678 ./lib/index.js",
"lint": "eslint . --fix",
"test": "jest bot && eslint .",
"test:watch": "jest bot --watch --notify --notifyMode=change --coverage"
},
"dependencies": {
"@hellomouse/session-pouchdb-store": "~0.3.3",
"@octokit/rest": "~16.42.0",
"express": "~4.17.1",
"express-session": "~1.17.0",
"irc-stream-parser": "~0.1.0",
"jsonwebtoken": "~8.5.1",
"pouchdb": "~7.1.1",
"probot": "~9.9.1",
"querystring": "~0.2.0",
"randomstring": "~1.1.5",
"request": "~2.88.0",
"request-promise-native": "~1.0.8"
},
"devDependencies": {
"@hellomouse/eslint-config-typescript": "~1.1.7",
"@hellomouse/eslint-config-wolfy1339": "~1.2.0",
"@types/bunyan": "~1.8.6",
"@types/express": "~4.17.2",
"@types/express-session": "~1.15.16",
"@types/ioredis": "~4.14.4",
"@types/jest": "~25.1.0",
"@types/jsonwebtoken": "~8.3.6",
"@types/lru-cache": "~5.1.0",
"@types/node": "~13.7.0",
"@types/pouchdb": "~6.4.0",
"@types/query-string": "~6.3.0",
"@types/randomstring": "~1.1.6",
"@types/request-promise-native": "~1.0.17",
"@typescript-eslint/eslint-plugin": "~2.18.0",
"@typescript-eslint/parser": "~2.18.0",
"eslint": "~6.8.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-flowtype": "^4.6.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsdoc": "~21.0.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.18.3",
"eslint-plugin-react-hooks": "^2.3.0",
"jest": "~25.1.0",
"nodemon": "~2.0.2",
"smee-client": "~1.1.0",
"typescript": "~3.7.5"
},
"engines": {
"node": ">= 8.6.0"
},
"standard": {
"env": [
"jest"
]
}
}