This repository was archived by the owner on May 7, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
100 lines (100 loc) · 2.26 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
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
93
94
95
96
97
98
99
100
{
"name": "caz",
"version": "0.6.0",
"description": "A simple yet powerful template-based Scaffolding tools.",
"keywords": [
"scaffolding",
"generator",
"cli",
"zce"
],
"homepage": "https://github.com/zce/caz#readme",
"bugs": {
"url": "https://github.com/zce/caz/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zce/caz.git"
},
"license": "MIT",
"author": {
"name": "zce",
"email": "w@zce.me",
"url": "https://zce.me"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"bin": "bin/caz.js",
"files": [
"lib"
],
"scripts": {
"lint": "ts-standard",
"clean": "rimraf lib",
"compile": "tsc",
"copy": "copyfiles -u 1 \"src/**/*.d.ts\" lib",
"build": "npm run clean && npm run compile && npm run copy",
"test": "jest --coverage",
"prepare": "husky install .github/husky && npm run lint && npm run build && npm run test"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{ts,js}": "ts-standard --fix"
},
"jest": {
"preset": "ts-jest",
"testTimeout": 30000,
"collectCoverageFrom": [
"src/**"
]
},
"renovate": {
"extends": [
"zce"
]
},
"dependencies": {
"adm-zip": "^0.5.5",
"cac": "^6.7.3",
"env-paths": "^2.2.1",
"fast-glob": "^3.2.7",
"ini": "^2.0.0",
"lodash": "^4.17.21",
"node-fetch": "^2.6.1",
"ora": "^5.4.1",
"prompts": "^2.4.1",
"semver": "^7.3.5",
"validate-npm-package-name": "^3.0.0"
},
"devDependencies": {
"@commitlint/cli": "12.1.4",
"@commitlint/config-conventional": "12.1.4",
"@types/adm-zip": "0.4.34",
"@types/ini": "1.3.30",
"@types/jest": "26.0.24",
"@types/lodash": "4.14.171",
"@types/node": "16.3.2",
"@types/node-fetch": "2.5.12",
"@types/prompts": "2.0.14",
"@types/semver": "7.3.7",
"@types/validate-npm-package-name": "3.0.3",
"copyfiles": "2.4.1",
"husky": "7.0.1",
"jest": "27.0.6",
"lint-staged": "11.1.0",
"rimraf": "3.0.2",
"ts-jest": "27.0.4",
"ts-standard": "10.0.0",
"typescript": "4.3.5"
},
"engines": {
"node": ">=10.12"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
}
}