-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.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
{
"name": "prebot",
"version": "0.0.0",
"private": false,
"bin": {
"prebot": "./bin/controller"
},
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"start": "node ./bin/controller"
},
"dependencies": {
"cookie-parser": "~1.4.4",
"debug": "~2.6.9",
"dotenv": "^8.2.0",
"express": "~4.16.1",
"hbs": "~4.0.4",
"http-errors": "~1.6.3",
"js-yaml": "^3.14.0",
"morgan": "~1.9.1"
},
"description": "Preflight configuration ui for Probot GitHub Apps",
"main": "app.js",
"repository": {
"type": "git",
"url": "git+https://github.com/jasonmacgowan/prebot.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/jasonmacgowan/prebot/issues"
},
"homepage": "https://github.com/jasonmacgowan/prebot#readme",
"devDependencies": {
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.8.1",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-github": "^4.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-typescript": "^0.14.0",
"prettier": "2.1.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}