forked from octokit/octokit.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.06 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.06 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "github",
"version": "0.0.0-development",
"description": "NodeJS wrapper for the GitHub API",
"author": "Mike de Boer <info@mikedeboer.nl>",
"contributors": [
{
"name": "Mike de Boer",
"email": "info@mikedeboer.nl"
},
{
"name": "Fabian Jakobs",
"email": "fabian@c9.io"
},
{
"name": "Joe Gallo",
"email": "joe@brassafrax.com"
},
{
"name": "Gregor Martynus",
"url": "https://github.com/gr2m"
}
],
"repository": "https://github.com/octokit/node-github",
"engines": {
"node": ">=4"
},
"dependencies": {
"dotenv": "^4.0.0",
"follow-redirects": "1.2.5",
"https-proxy-agent": "^2.1.0",
"lodash": "^4.17.4",
"mime": "^2.0.3",
"netrc": "^0.1.4"
},
"devDependencies": {
"@octokit/fixtures": "^4.1.0",
"chai": "^4.1.2",
"coveralls": "^3.0.0",
"glob": "^7.1.2",
"mocha": "^4.0.1",
"mustache": "^2.2.1",
"npm-run-all": "^4.1.1",
"nyc": "^11.2.1",
"proxyquire": "^1.8.0",
"semantic-release": "^8.2.0",
"standard": "^10.0.3",
"standard-markdown": "^4.0.2"
},
"main": "lib",
"types": "lib/index.d.ts",
"scripts": {
"coverage": "nyc report --reporter=html && open coverage/index.html",
"coverage:upload": "nyc report --reporter=text-lcov | coveralls",
"pretest": "standard && standard-markdown",
"test": "nyc mocha test/**/*-test.js",
"build": "npm-run-all build:*",
"build:flow": "node scripts/generateFlowTypes",
"build:ts": "node scripts/generateTypeScriptTypes",
"presemantic-release": "npm run -s build",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"license": "MIT",
"licenses": [
{
"type": "The MIT License",
"url": "http://www.opensource.org/licenses/mit-license.php"
}
],
"files": [
"lib"
],
"apidoc": {
"title": "node-github",
"name": "node-github",
"version": "11.0.0",
"template": {
"withCompare": true
}
},
"nyc": {
"ignore": [
"examples",
"test"
]
}
}