-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
59 lines (59 loc) · 1.53 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": "create-clone",
"version": "0.3.0",
"description": "A template repository cloning tool with support for private GitHub repos.",
"main": "dist/index.js",
"source": "src/index.ts",
"bin": "dist/cli.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "typebundle \"src/{cli,index}.ts\" --output dist --target 10 --compress",
"build-toc": "doctoc README.md --github",
"git-pre-commit": "precise-commits",
"prerelease": "npm run build",
"release": "np --no-yarn --no-tests",
"test": "mocha",
"watch": "typebundle \"src/{cli,index}.ts\" --output dist --target 10 --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rdmurphy/create-clone.git"
},
"files": [
"dist",
"src"
],
"keywords": [
"templates",
"git",
"npx",
"clone"
],
"author": "Ryan Murphy",
"license": "MIT",
"bugs": {
"url": "https://github.com/rdmurphy/create-clone/issues"
},
"homepage": "https://github.com/rdmurphy/create-clone#readme",
"dependencies": {
"hosted-git-info": "^4.0.0",
"mri": "^1.1.4",
"tar": "^6.0.0"
},
"devDependencies": {
"@newswire/prettier-config": "^3.0.0",
"@types/mri": "^1.1.0",
"@types/node": "^14.0.1",
"@types/tar": "^4.0.3",
"doctoc": "^1.4.0",
"dotenv": "^11.0.0",
"fs-extra": "^10.1.0",
"mocha": "^8.0.1",
"np": "^5.2.1",
"precise-commits": "^1.0.2",
"prettier": "^2.0.2",
"tiny-glob": "^0.2.6",
"typebundle": "^0.12.0"
},
"prettier": "@newswire/prettier-config"
}