-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
45 lines (45 loc) · 1.25 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
{
"name": "github-rest-apis-for-insomnia",
"version": "1.1.1",
"description": "A complete set of GitHub REST API route specifications that can be imported straight into Insomnia REST Client",
"main": "index.js",
"scripts": {
"start": "node ./index.js",
"test": "jest --coverage",
"lint": "eslint index.js lib/**.js"
},
"bin": {
"github-rest-apis-for-insomnia": "./index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/swinton/github-rest-apis-for-insomnia.git"
},
"keywords": [
"insomnia",
"github"
],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/swinton/github-rest-apis-for-insomnia/issues"
},
"homepage": "https://github.com/swinton/github-rest-apis-for-insomnia#readme",
"dependencies": {
"@octokit/routes": "26.18.0",
"lodash": "^4.17.15"
},
"devDependencies": {
"eslint": "^5.14.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^4.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.4",
"insomnia-importers": "^2.1.1",
"jest": "^24.9.0",
"nodemon": "^1.18.10",
"prettier": "^1.16.4"
}
}