-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
40 lines (40 loc) · 909 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
{
"name": "gitio-cli",
"version": "0.0.2",
"main": "lib/gitio.js",
"description": "A simple CLI to get your own custom git.io domain",
"homepage": "http://git.io",
"bugs": "https://github.com/krrishd/gitio/issues",
"author": {
"name": "Krish Dholakiya",
"email": "[email protected]",
"url": "http://www.itskrish.co"
},
"repository": {
"type": "git",
"url": "https://github.com/krrishd/gitio"
},
"license": "MIT",
"files": [
"lib"
],
"keywords": [],
"devDependencies": {
"grunt-contrib-jshint": "^0.10.0",
"grunt-contrib-nodeunit": "^0.3.3",
"grunt-contrib-watch": "^0.6.1",
"load-grunt-tasks": "^0.4.0",
"time-grunt": "^0.3.1",
"jshint-stylish": "^0.2.0"
},
"scripts": {
"test": "grunt"
},
"preferGlobal": "true",
"bin": {
"gitio": "lib/gitio.js"
},
"dependencies": {
"request": "^2.36.0"
}
}