This repository has been archived by the owner on Sep 25, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 1.64 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
{
"name": "github-app-repl",
"version": "1.0.1",
"description": "A REPL (read–eval–print loop) for GitHub Apps",
"author": "Steve Winton <stevewinton@gmail.com> (https://github.com/swinton)",
"main": "github-app-repl.js",
"scripts": {
"start": "node --experimental-repl-await ./github-app-repl.js",
"test": "jest --coverage",
"lint": "eslint github-app-repl.js ./github-app-repl.js lib/**.js"
},
"bin": {
"github-app-repl": "./github-app-repl.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/swinton/github-app-repl.git"
},
"keywords": [
"github",
"github-apps",
"repl"
],
"license": "ISC",
"bugs": {
"url": "https://github.com/swinton/github-app-repl/issues"
},
"homepage": "https://github.com/swinton/github-app-repl#readme",
"dependencies": {
"@octokit/auth-app": "^2.4.5",
"@octokit/graphql": "^4.3.1",
"@octokit/rest": "^17.7.0",
"dotenv": "^8.2.0",
"universal-github-app-jwt": "^1.0.2"
},
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-config-prettier": "^3.6.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^2.7.0",
"eslint-plugin-react": "^7.12.4",
"jest": "^24.9.0",
"prettier": "^1.19.1"
},
"engines": {
"node": "12.x"
},
"jest": {
"testEnvironment": "node",
"collectCoverageFrom": [
"github-app-repl.js",
"lib/*.js"
],
"coverageThreshold": {
"global": {
"branches": 80,
"functions": 80,
"lines": 80,
"statements": 80
}
}
}
}