forked from AnandChowdhary/update-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 1.51 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
60
61
62
63
64
{
"name": "@cactuslab/update-template",
"version": "2.1.0",
"description": "Easily update repos created with GitHub or local templates",
"main": "dist/index.js",
"bin": "dist/cli.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"prepublish": "npm run build",
"start": "ts-node update.ts",
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "tsc --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/karlvr/update-template.git"
},
"keywords": [
"github",
"template",
"repo",
"tool",
"tooling",
"nodejs",
"typescript"
],
"author": "Anand Chowdhary <[email protected]>",
"contributors": [
{
"name": "Karl von Randow"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/karlvr/update-template/issues"
},
"homepage": "https://github.com/karlvr/update-template#readme",
"devDependencies": {
"@semantic-release/git": "^9.0.0",
"@types/deep-equal": "^1.0.1",
"@types/fs-extra": "^9.0.8",
"@types/recursive-readdir": "^2.2.0",
"@types/semver": "^7.3.4",
"semantic-release": "^17.4.2",
"semantic-release-gitmoji": "^1.3.4",
"ts-node": "^9.1.1",
"typescript": "^4.2.3"
},
"dependencies": {
"ansi-colors": "^4.1.1",
"deep-equal": "^2.0.5",
"fast-glob": "^3.2.5",
"fs-extra": "^9.1.0",
"recursive-readdir": "^2.2.2",
"semver": "^7.3.5"
},
"publishConfig": {
"access": "public"
}
}