-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.97 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": "clivate",
"version": "1.0.0-alpha.2",
"main": "build/index.js",
"description": "Flexible Node.js CLI Tooling",
"homepage": "https://harryhorton.github.io/clivate/",
"files": [
"/"
],
"bin": {
"clivate": "build/clivate.js"
},
"license": "MIT",
"scripts": {
"build": "rm -rf build && tsc && chmod +x ./build/bin/clivate.js && cp -R templates build/templates && node ./scripts/prepend-bin.js",
"watch": "watch -p \"src/**/*\" -c \"yarn build\"",
"build:docs": "vuepress build docs",
"dev:docs": "vuepress dev docs",
"test": "node ./node_modules/.bin/jest --verbose",
"build:sample": "tsc",
"v": "vuepress --help",
"release": "yarn changelog && git tag -a v$npm_package_version -m v$npm_package_version && git add -A && git commit -m \"release v$npm_package_version\" && git push --tags",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"changelog:latest": "conventional-changelog -p angular -i CHANGELOG_LATEST.md -s",
"clivate": "node build/clivate.js",
"build:commands": "tsc --project ./commands/tsconfig.json"
},
"dependencies": {
"@types/app-root-path": "^1.2.4",
"@types/chalk": "^2.2.0",
"@types/handlebars": "^4.1.0",
"@types/inquirer": "7.3.1",
"@types/node": "^14.0.27",
"app-root-path": "^3.0.0",
"chalk": "^4.1.0",
"commander": "6.0.0",
"fp-ts": "^2.8.1",
"handlebars": "^4.7.6",
"inquirer": "7.3.3",
"io-ts": "^2.2.9",
"prepend-file": "^2.0.0",
"rambda": "5.13.1",
"ts-node": "^9.0.0"
},
"devDependencies": {
"@types/jest": "26.0.10",
"@types/mock-fs": "^4.10.0",
"@vuepress/plugin-back-to-top": "^1.3.1",
"@vuepress/plugin-medium-zoom": "^1.3.1",
"conventional-changelog-cli": "^2.1.0",
"conventional-recommended-bump": "^6.0.10",
"jest": "26.4.2",
"mock-fs": "tschaub/mock-fs",
"ts-jest": "26.2.0",
"typescript": "4.0.2",
"vuepress": "^1.3.1",
"watch-cli": "^0.2.3"
}
}