-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.23 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
{
"name": "repo-copy",
"version": "0.2.5",
"description": "Git repository copy/compressor",
"main": "bin/repo-copy",
"scripts": {
"test": "./node_modules/tape/bin/tape test/*",
"cov": "./node_modules/istanbul/lib/cli.js cover node_modules/.bin/tape --report lcovonly test/*.js && coveralls < ./coverage/lcov.info",
"covHTML": "./node_modules/istanbul/lib/cli.js cover node_modules/.bin/tape --report html test/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ManRueda/repo-copy.git"
},
"keywords": [
"git",
"repository",
"copy",
"compressor"
],
"preferGlobal": true,
"bin": {
"repo-copy": "./bin/repo-copy"
},
"author": "Manuel Rueda <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ManRueda/repo-copy/issues"
},
"homepage": "https://github.com/ManRueda/repo-copy#readme",
"dependencies": {
"adm-zip": "^0.4.7",
"commander": "^2.9.0",
"debug": "^2.2.0",
"fstream": "^1.0.8",
"glob": "^6.0.4",
"ignore": "^2.2.19",
"promise": "^7.1.1",
"rimraf": "^2.5.1",
"tar": "^2.2.1"
},
"devDependencies": {
"coveralls": "^2.11.6",
"istanbul": "^0.4.2",
"tape": "^4.4.0"
}
}