-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1019 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 1019 Bytes
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
{
"name": "node-github-api",
"description": "retrieve github stars",
"version": "0.0.2",
"homepage": "https://github.com/kwakayama/node-github-api",
"bugs": "https://github.com/kwakayama/node-github-api/issues",
"license": "MIT",
"main": "lib/github-api.js",
"author": {
"name": "Kentaro Wakayama",
"email": "wakayama.kentaro@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/kwakayama/node-github-api"
},
"keywords": [],
"dependencies": {
"github": "^0.1.16",
"lodash": "^2.4.1",
"q": "^2.0.1"
},
"devDependencies": {
"gulp": "^3.6.2",
"gulp-bump": "^0.1.8",
"gulp-jscs": "^0.4.2",
"gulp-jshint": "^1.5.5",
"gulp-mocha": "^0.4.1",
"gulp-istanbul": "^0.1.1",
"coveralls": "^2.10.0",
"should": "^3.3.1",
"jshint-stylish": "^0.2.0",
"sinon": "^1.9.1"
},
"scripts": {
"coveralls": "gulp test && cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"test": "gulp test"
}
}