-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
86 lines (86 loc) · 1.69 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "github-base",
"description": "Low-level methods for working with the GitHub API in node.js/JavaScript.",
"version": "1.0.0",
"homepage": "https://github.com/jonschlinkert/github-base",
"author": "Jon Schlinkert (https://github.com/jonschlinkert)",
"contributors": [
"Brian Woodward (https://twitter.com/doowb)",
"Jon Schlinkert (http://twitter.com/jonschlinkert)",
"Olsten Larck (https://i.am.charlike.online)"
],
"repository": "jonschlinkert/github-base",
"bugs": {
"url": "https://github.com/jonschlinkert/github-base/issues"
},
"license": "MIT",
"files": [
"index.js",
"lib"
],
"main": "index.js",
"engines": {
"node": ">=8.6"
},
"scripts": {
"test": "mocha"
},
"dependencies": {
"axios": "^0.18.0",
"get-value": "^3.0.1",
"needle": "^2.2.2",
"paged-request": "^1.0.2",
"parse-link-header": "^1.0.1",
"qs": "^6.5.1",
"use": "^3.1.0"
},
"devDependencies": {
"minimist": "^1.2.0",
"data-store": "^1.0.0",
"mocha": "^3.5.3",
"kind-of": "^6.0.2",
"gulp-format-md": "^1.0.0"
},
"keywords": [
"api",
"base",
"del",
"delete",
"get",
"github",
"paginate",
"paginated",
"patch",
"post",
"put",
"request"
],
"verb": {
"layout": "default",
"toc": {
"render": true,
"method": "preWrite",
"collapsible": true,
"maxdepth": 4
},
"tasks": [
"readme"
],
"plugins": [
"gulp-format-md"
],
"related": {
"list": [
"gists",
"repos",
"topics",
"github-contributors"
]
},
"reflinks": [
"needle",
"qs",
"use"
]
}
}