-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.62 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.62 KB
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "@jsany/cli-kit",
"version": "1.1.8",
"description": "The typescript scaffold demo for the future",
"keywords": ["cli", "kit", "scaffold", "future", "typescript"],
"homepage": "https://github.com/jsany/cli-kit#readme",
"bugs": {
"url": "https://github.com/jsany/cli-kit/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/jsany/cli-kit.git"
},
"license": "MIT",
"author": "jiangzhiguo2010",
"main": "lib/index.js",
"typings": "typings.d.ts",
"bin": {
"cli-kit": "bin/index.js"
},
"files": ["lib", "bin", "scripts", "templates", ".clikitrc.json", "typings.d.ts"],
"scripts": {
"compile": "babel src --out-dir lib --extensions \".ts\"",
"check:ts": "tsc --noEmit --pretty",
"check:ts:watch": "npm run check:ts -- --watch",
"postinstall": "node scripts/postinstall.js",
"release": "standard-version"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"prepare-commit-msg": "devmoji -e --lint",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"**/*.{js,ts,md,json}": ["prettier --write"],
"package.json": ["sort-package-json"]
},
"dependencies": {
"cac": "^6.5.10",
"chalk": "^4.1.0",
"clipboardy": "^2.3.0",
"download-git-repo": "^3.0.2",
"enquirer": "^2.3.5",
"envinfo": "^7.5.1",
"fs-extra": "^9.0.1",
"handlebars": "^4.7.6",
"metalsmith": "^2.3.0",
"ora": "^4.0.4",
"progress": "^2.0.3",
"semver": "^7.3.2",
"update-notifier": "^4.1.0"
},
"devDependencies": {
"@babel/cli": "^7.12.17",
"@babel/core": "^7.12.17",
"@babel/plugin-transform-runtime": "^7.12.17",
"@babel/preset-env": "^7.12.17",
"@babel/preset-typescript": "^7.12.17",
"@babel/runtime": "^7.12.18",
"@commitlint/cli": "^9.0.1",
"@commitlint/config-conventional": "^9.0.1",
"@types/fs-extra": "^9.0.1",
"@types/metalsmith": "^2.3.0",
"@types/node": "^14.0.14",
"@types/semver": "^7.3.1",
"@types/update-notifier": "^4.1.0",
"@typescript-eslint/eslint-plugin": "^4.15.1",
"@typescript-eslint/parser": "^4.15.1",
"babel-plugin-module-resolver": "^4.1.0",
"devmoji": "^2.1.9",
"eslint": "^7.20.0",
"eslint-config-alloy": "^3.10.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"prettier": "^2.0.5",
"sort-package-json": "^1.44.0",
"standard-version": "^8.0.2",
"typescript": "^3.9.5"
},
"engines": {
"node": ">=10"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"issues": {
"url": "https://github.com/jsany/cli-kit/issues"
}
}