-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
56 lines (56 loc) · 1.28 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
{
"name": "github-oauth-prompt",
"version": "1.1.0",
"main": "lib/github-oauth-prompt.js",
"description": "Easy creation of GitHub OAuth tokens for your app name",
"homepage": "https://github.com/henrahmagix/github-oauth-prompt",
"bugs": "https://github.com/henrahmagix/github-oauth-prompt/issues",
"author": {
"name": "Henry Blyth",
"email": "[email protected]",
"url": "https://henryblyth.com"
},
"repository": {
"type": "git",
"url": "https://github.com/henrahmagix/github-oauth-prompt"
},
"keywords": [
"github",
"oauth",
"token",
"prompt",
"authorisation",
"authorization",
"api"
],
"licenses": [
{
"type": "MIT"
}
],
"scripts": {
"test": "grunt test",
"coverage": "grunt coverage"
},
"devDependencies": {
"grunt": "0.4.5",
"grunt-contrib-jshint": "0.10.0",
"grunt-contrib-watch": "0.6.1",
"grunt-coveralls": "1.0.0",
"grunt-jscs": "0.8.1",
"grunt-shell": "1.1.1",
"istanbul": "0.3.2",
"jit-grunt": "0.9.0",
"jshint-stylish": "1.0.0",
"load-grunt-tasks": "0.6.0",
"mocha": "1.21.5",
"time-grunt": "1.0.0"
},
"dependencies": {
"async": "0.9.0",
"github": "0.2.0",
"inquirer": "0.5.1",
"lodash": "2.4.1",
"nock": "0.37.0"
}
}