forked from github-tools/github
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 2.63 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "github-api",
"version": "3.1.0",
"license": "BSD-3-Clause-Clear",
"description": "A higher-level wrapper around the Github API.",
"main": "dist/components/GitHub.js",
"contributors": [
"Ændrew Rininsland <aendrew.rininsland@thetimes.co.uk> (http://www.aendrew.com)",
"Aurelio De Rosa <a.derosa@audero.it> (http://www.audero.it/)",
"Clay Reimann <clayreimann@gmail.com> (http://clayreimann.me)",
"Michael Aufreiter (http://substance.io)",
"Mathieu Dutour <mathieu@dutour.me> (https://github.com/mathieudutour)"
],
"readmeFilename": "README.md",
"scripts": {
"clean": "gulp clean",
"build": "gulp build",
"test": "mocha --opts ./mocha.opts test/*.spec.js",
"test-coverage": "NODE_ENV=test nyc mocha --opts ./mocha.opts test/*.spec.js",
"test-verbose": "DEBUG=github* npm test",
"lint": "gulp lint",
"make-docs": "node_modules/.bin/jsdoc -c .jsdoc.json --verbose",
"release": "./release.sh",
"codecov": "nyc report --reporter=text-lcov > coverage.lcov && codecov"
},
"babel": {
"presets": [
"es2015"
],
"plugins": [
[
"add-module-exports",
"transform-es2015-modules-umd"
]
],
"env": {
"development": {
"sourceMaps": "inline"
},
"test": {
"plugins": [
"istanbul"
]
}
}
},
"nyc": {
"sourceMap": false,
"instrument": false
},
"files": [
"dist/*"
],
"dependencies": {
"axios": "^0.15.2",
"debug": "^2.2.0",
"js-base64": "^2.1.9",
"utf8": "^2.1.1"
},
"devDependencies": {
"babel-core": "^6.7.7",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-istanbul": "3.0.0",
"babel-plugin-transform-es2015-modules-umd": "^6.5.0",
"babel-preset-es2015": "^6.5.0",
"babel-register": "^6.7.2",
"babelify": "^7.3.0",
"browserify": "^13.0.0",
"codecov": "^1.0.1",
"del": "^2.2.0",
"eslint-config-google": "^0.7.0",
"eslint-plugin-mocha": "^4.7.0",
"gulp": "^3.9.0",
"gulp-babel": "^6.1.2",
"gulp-eslint": "^3.0.1",
"gulp-jscs": "^4.0.0",
"gulp-jscs-stylish": "^1.3.0",
"gulp-rename": "^1.2.2",
"gulp-sourcemaps": "^2.2.0",
"gulp-uglify": "^2.0.0",
"jsdoc": "^3.4.0",
"minami": "^1.1.1",
"mocha": "^3.1.2",
"must": "^0.13.1",
"nock": "^9.0.2",
"nyc": "9.0.1",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0"
},
"repository": {
"type": "git",
"url": "git://github.com/github-tools/github.git"
},
"keywords": [
"github",
"api"
],
"bugs": {
"url": "https://github.com/github-tools/github/issues"
}
}