-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
59 lines (59 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
57
58
59
{
"name": "github-backup",
"version": "0.2.0",
"description": "Backup GitHub repositories locally",
"main": "bin/github-backup.js",
"bin": "bin/github-backup.js",
"preferGlobal": true,
"scripts": {
"lint-js": "bash -c \"jshint bin/*.js lib/*.js\""
},
"repository": {
"type": "git",
"url": "git://github.com/ericlathrop/github-backup.git"
},
"keywords": [
"git",
"backup",
"github"
],
"author": "Eric Lathrop <[email protected]> (http://ericlathrop.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/ericlathrop/github-backup/issues"
},
"homepage": "https://github.com/ericlathrop/github-backup",
"dependencies": {
"argparse": "^1.0.7",
"bluebird": "^2.3.2"
},
"devDependencies": {
"jshint": "^2.5.5"
},
"jshintConfig": {
"camelcase": true,
"curly": true,
"eqeqeq": true,
"forin": true,
"freeze": true,
"immed": true,
"indent": 4,
"latedef": "nofunc",
"newcap": true,
"noarg": true,
"node": true,
"noempty": true,
"nonbsp": true,
"nonew": true,
"quotmark": "double",
"unused": "strict",
"trailing": true,
"browser": true,
"devel": true,
"globalstrict": true,
"globals": {
"module": false,
"require": false
}
}
}