-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
104 lines (104 loc) · 2.67 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
102
103
104
{
"name": "github-create-token",
"version": "1.0.4",
"description": "Create a Github OAuth access token.",
"author": {
"name": "Athan Reines",
"email": "[email protected]"
},
"contributors": [
{
"name": "Athan Reines",
"email": "[email protected]"
}
],
"bin": {
"ghcreatetoken": "./bin/cli",
"github-create-token": "./bin/cli"
},
"scripts": {
"test": "if [ \"${TRAVIS}\" ]; then npm run test-ci; else npm run test-local; fi",
"test-local": "tape \"./test/*.js\" | tap-spec",
"test-ci": "npm run test-local && xvfb-run npm run test-browsers",
"test-cov": "istanbul cover --dir ./reports/coverage --report lcov tape -- \"./test/*.js\"",
"test-browsers": "browserify -p ./node_modules/proxyquire-universal ./test/*.js | testling | tap-spec",
"coverage": "istanbul cover --dir ./reports/codecov/coverage --report lcovonly tape -- \"./test/*.js\" && cat ./reports/codecov/coverage/lcov.info | codecov && rm -rf ./reports/codecov"
},
"main": "./lib",
"repository": {
"type": "git",
"url": "git://github.com/kgryte/github-create-token.git"
},
"keywords": [
"gh",
"github",
"git",
"token",
"oauth",
"access",
"authorization",
"authorize",
"permissions",
"allow",
"grant",
"utility",
"util",
"cli",
"api",
"request",
"post",
"create"
],
"bugs": {
"url": "https://github.com/kgryte/github-create-repo/issues"
},
"dependencies": {
"debug": "^2.2.0",
"minimist": "^1.2.0",
"prompt-sync": "^4.0.4",
"regex-eol": "^1.0.0",
"update-notifier": "^0.6.1",
"utils-copy": "^1.1.1",
"utils-cwd": "^2.0.0",
"utils-json-parse": "^1.0.0",
"utils-left-pad-string": "^1.0.1",
"validate.io-function": "^1.0.2",
"validate.io-object": "^1.0.4",
"validate.io-string-primitive": "^1.0.0",
"validate.io-string-primitive-array": "^1.0.0",
"validate.io-uri": "^1.0.0"
},
"devDependencies": {
"@kgryte/noop": "^1.0.0",
"browserify": "13.x.x",
"codecov": "1.x.x",
"istanbul": "^0.4.1",
"jshint": "2.x.x",
"jshint-stylish": "2.x.x",
"proxyquire": "^1.7.4",
"proxyquire-universal": "^1.0.8",
"proxyquireify": "^3.1.1",
"tap-spec": "4.x.x",
"tape": "4.x.x",
"testling": "1.x.x"
},
"testling": {
"files": [
"test/*.js"
],
"browsers": [
"iexplore/6.0..latest",
"firefox/3.0..latest",
"firefox/nightly",
"chrome/4.0..latest",
"chrome/canary",
"opera/10.0..latest",
"opera/next",
"safari/4.0..latest",
"ipad/6.0..latest",
"iphone/6.0..latest",
"android-browser/4.2..latest"
]
},
"license": "MIT"
}