-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 870 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 870 Bytes
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
{
"name": "github2range",
"description": "Self-hosted GitHub integration for Range.",
"version": "1.0.4",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/range-labs/github2range.git"
},
"main": "./lib/index.js",
"bin": {
"github2range": "./lib/index.js"
},
"scripts": {
"lint": "./node_modules/.bin/eslint **/*.js",
"fmt": "./node_modules/.bin/prettier --write **/*.js",
"start": "node ./lib/index.js"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"prettier": "^2.0.5"
},
"dependencies": {
"@octokit/rest": "^17.7.0",
"colors": "^1.4.0",
"rc": "^1.2.8"
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"printWidth": 100,
"semi": true,
"singleQuote": true,
"quoteProps": "consistent"
}
}