-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 884 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
{
"name": "repo-git-downloader",
"version": "0.1.1",
"description": "A tool to download git repository",
"main": "lib/index.js",
"scripts": {
"test": "cross-env NODE_ENV=test && npm run lint && npm run bdd",
"lint": "eslint lib/*",
"bdd": "mocha test/test*.js --timeout 10000"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mnichangxin/repo-git-downloader.git"
},
"keywords": [
"git",
"download"
],
"author": "lichangxin",
"license": "MIT",
"bugs": {
"url": "https://github.com/mnichangxin/repo-git-downloader/issues"
},
"homepage": "https://github.com/mnichangxin/repo-git-downloader#readme",
"dependencies": {
"chalk": "^3.0.0",
"download": "^7.1.0"
},
"devDependencies": {
"chai": "^4.2.0",
"cross-env": "^7.0.2",
"eslint": "^6.8.0",
"mocha": "^5.2.0",
"rimraf": "^3.0.2"
},
"engines": {
"node": ">=8.0.0"
}
}