-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
48 lines (48 loc) · 1.3 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
{
"name": "@chadfawcett/probot-serverless-now",
"version": "2.0.0",
"description": "A Probot extension to make it easier to run your Probot Apps on Zeit Now v2",
"main": "index.js",
"scripts": {
"test": "npm run prettier-check && npm run eslint && LOG_LEVEL=fatal jest",
"eslint": "eslint '**/*.js'",
"prettier": "prettier --write '**/*.js'",
"prettier-check": "prettier --list-different '**/*.js'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chadfawcett/probot-serverless-now.git"
},
"keywords": [
"probot",
"now",
"zeit",
"serverless",
"github-apps",
"github",
"automation",
"robots",
"workflow"
],
"author": "Chad Fawcett <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/chadfawcett/probot-serverless-now/issues"
},
"homepage": "https://github.com/chadfawcett/probot-serverless-now#readme",
"peerDependencies": {
"probot": "^10.2"
},
"devDependencies": {
"@twostoryrobot/eslint-config": "^2.2.0",
"@twostoryrobot/prettier-config": "^2.0.1",
"eslint": "^5.11.0",
"eslint-config-prettier": "^3.3.0",
"eslint-plugin-jest": "^22.1.2",
"jest": "^23.6.0",
"nock": "^10.0.5",
"prettier": "^1.15.3",
"probot": "^10.2.0",
"supertest": "^3.3.0"
}
}