forked from kaizensoze/node-github
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.5 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
{
"name": "github-xhr",
"version": "0.3.2",
"description": "NodeJS wrapper for the GitHub API that uses browser XMLHttpRequest to make requests",
"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": "Chris Bargren",
"email": "cbargren@gmail.com"
}
],
"homepage": "https://github.com/cbargren/github-xhr",
"repository": {
"type": "git",
"url": "https://github.com/cbargren/github-xhr.git"
},
"engine": {
"node": ">=0.4.0"
},
"dependencies": {
"mime": "^1.2.11"
},
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-preset-es2015": "^6.6.0",
"eslint": "^2.4.0",
"eslint-config-airbnb": "^6.1.0",
"eslint-plugin-react": "^4.2.3",
"mocha": "~1.13.0",
"xmlhttprequest": "^1.8.0"
},
"main": "dist",
"files": [
"dist",
"routes.json"
],
"scripts": {
"compile": "babel --presets es2015 --out-dir ./dist lib",
"lint": "eslint lib --quiet",
"prepublish": "npm run compile",
"test": "mocha"
},
"license": "MIT",
"licenses": [
{
"type": "The MIT License",
"url": "http://www.opensource.org/licenses/mit-license.php"
}
],
"apidoc": {
"title": "node-github",
"name": "node-github",
"template": {
"withCompare": false
}
}
}