-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.38 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 1.38 KB
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
66
67
68
69
70
71
72
{
"name": "npm-api-dependents",
"description": "npm-api plugin for getting module dependents.",
"version": "1.0.0",
"homepage": "https://github.com/doowb/npm-api-dependents",
"author": "Brian Woodward (https://github.com/doowb)",
"contributors": [
"Brian Woodward (https://twitter.com/doowb)",
"Lars-Magnus Skog (https://github.com/ralphtheninja)"
],
"repository": "doowb/npm-api-dependents",
"bugs": {
"url": "https://github.com/doowb/npm-api-dependents/issues"
},
"license": "MIT",
"files": [
"index.js",
"utils.js"
],
"main": "index.js",
"engines": {
"node": ">=4.0"
},
"scripts": {
"test": "mocha"
},
"dependencies": {
"extend-shallow": "^2.0.1",
"lazy-cache": "^1.0.3",
"through2": "^2.0.3"
},
"devDependencies": {
"gulp-format-md": "^1.0.0",
"mocha": "3.5.3",
"npm-api": "^0.4.10"
},
"keywords": [
"api",
"dependent",
"dependents",
"module",
"module-dependents",
"modules",
"npm",
"npm-api",
"package",
"package-dependents",
"packages",
"repo",
"repo-dependents",
"repos",
"stream"
],
"verb": {
"run": true,
"toc": false,
"layout": "default",
"tasks": [
"readme"
],
"plugins": [
"gulp-format-md"
],
"reflinks": [
"npm-api",
"verb"
],
"lint": {
"reflinks": true
}
}
}