-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 862 Bytes
/
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
{
"name": "gthb",
"version": "0.0.2",
"description": "A lightweight wrapper around the GitHub API.",
"keywords": [
"github"
],
"main": "./index",
"scripts": {
"test": "npm run lint && mocha",
"lint": "jshint index.js lib/*.js examples/*.js test/*.js && echo Lint passed."
},
"author": "Desmond Morris <[email protected]>",
"license": "MIT",
"dependencies": {
"deep-extend": "^0.3.3",
"request": "^2.55.0"
},
"devDependencies": {
"jshint": "^2.6.3",
"mocha": "^2.2.4",
"nock": "^1.5.0"
},
"jshintConfig": {
"boss": true,
"node": true,
"strict": true,
"newcap": false,
"undef": true,
"unused": true,
"onecase": true,
"lastsemic": true,
"indent": 2,
"globals": {
"escape": true,
"describe": true,
"it": true,
"before": true
}
}
}