-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
34 lines (34 loc) · 939 Bytes
/
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
{
"name": "@dollarshaveclub/dependents",
"version": "1.2.3",
"description": "Lists dependent repo versions for a particular package",
"main": "index.js",
"bin": {
"dependents": "./bin/index.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"eslint": "eslint . --fix --cache",
"eslint:ci": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/dollarshaveclub/dependents.git"
},
"author": "Jacob Kelley <jacob.kelley@dollarshaveclub.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/dollarshaveclub/dependents/issues"
},
"homepage": "https://github.com/dollarshaveclub/dependents#readme",
"dependencies": {
"@octokit/rest": "^14.0.4",
"colors": "^1.1.2",
"commander": "^2.13.0",
"left-pad": "^1.2.0"
},
"devDependencies": {
"eslint": "^3.19.0",
"eslint-config-dollarshaveclub": "^2.2.0"
}
}