-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.48 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
{
"name": "shoulder",
"description": "Automatically find dependent projects for the specified package.",
"version": "2.1.0",
"main": "lib/Shoulder.js",
"author": "Alex J Burke <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/alexjeffburke/shoulder.git"
},
"bugs": {
"url": "https://github.com/alexjeffburke/shoulder/issues"
},
"bin": {
"shoulder": "./bin/shoulder"
},
"dependencies": {
"debug": "^4.1.1",
"is-git-url": "^1.0.0",
"lodash": "^4.17.13",
"node-fetch": "^2.3.0",
"normalize-git-url": "^3.0.2",
"npm-dependants": "^2.1.2",
"validate-npm-package-name": "^3.0.0",
"yargs": "^16.0.3"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.7.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"mocha": "^8.1.3",
"nyc": "^15.0.0",
"prettier": "~1.19.1",
"sinon": "^7.2.3",
"unexpected": "^11.0.1",
"unexpected-sinon": "^10.11.0"
},
"engines": {
"node": ">= 6.0.0"
},
"files": [
"bin",
"lib"
],
"keywords": [
"check",
"dependency",
"semver",
"test",
"update"
],
"license": "MIT",
"scripts": {
"coverage": "nyc --reporter lcov --reporter text npm test",
"lint": "eslint .",
"test": "mocha"
}
}