-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 1004 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
{
"name": "template-down",
"version": "1.0.0",
"description": "It is useful for creating a template by git clone. It saved the template to local cached folder to avoid run `git clone` every time creating template. It could significantly improve the speed of installing template.",
"main": "index.js",
"scripts": {
"test": "DEBUG=template-down jest",
"preversion": "npm test",
"postversion": "npm publish && git push"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pspgbhu/template-down.git"
},
"keywords": [
"install",
"template",
"cache",
"git",
"clone",
"download",
"zip"
],
"author": "pspgbhu <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/pspgbhu/template-down.git"
},
"types": "types/index.d.ts",
"homepage": "https://github.com/pspgbhu/template-down#readme",
"dependencies": {
"download": "^7.1.0",
"fs-extra": "^7.0.0",
"jest": "^23.5.0"
}
}