-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
100 lines (100 loc) · 2.43 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": "create-component-cli",
"version": "0.1.1",
"description": "CLI for bootstrapping react component",
"main": "index.js",
"bin": {
"create-component": "./index.js"
},
"scripts": {
"test": "npm run clean && jest",
"format": "prettier --write --config .prettierrc src/*.ts",
"commit": "git-cz",
"lint": "tslint --fix src/**/*.ts",
"release": "standard-version",
"watch": "tsc -w",
"build": "tsc",
"clean": "rm -rf ./testTemplateDir"
},
"keywords": [
"react",
"library",
"component",
"cli"
],
"files": [
"dist",
"scaffold"
],
"author": "xiaomuzhu",
"license": "MIT",
"homepage": "https://github.com/xiaomuzhu/create-component",
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -e $GIT_PARAMS"
}
},
"lint-staged": {
"src/**/*.{ts,tsx}": [
"prettier --write",
"tslint --fix",
"git add"
]
},
"devDependencies": {
"@commitlint/cli": "^7.2.1",
"@commitlint/config-conventional": "^7.1.2",
"@types/execa": "^0.9.0",
"@types/fs-extra": "^5.0.4",
"@types/glob": "^7.1.1",
"@types/inquirer": "0.0.43",
"@types/jest": "^23.3.9",
"@types/lodash": "^4.14.118",
"@types/mem-fs": "^1.1.1",
"@types/mem-fs-editor": "^4.0.1",
"@types/node": "^10.12.2",
"@types/parse-git-config": "^2.0.1",
"@types/shelljs": "^0.8.0",
"@types/tempy": "^0.2.0",
"@types/which": "^1.3.1",
"commitizen": "^3.0.4",
"cz-conventional-changelog": "^2.1.0",
"execa": "^1.0.0",
"husky": "^1.2.0",
"jest": "^23.6.0",
"jetpack": "^0.10.2",
"lint-staged": "^8.0.4",
"npm": "^6.4.1",
"prettier": "^1.14.3",
"standard-version": "^4.4.0",
"tempy": "^0.2.1",
"ts-jest": "^23.10.4",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.15.0",
"typescript": "^3.1.6"
},
"dependencies": {
"chalk": "^2.4.1",
"shelljs": "^0.8.3",
"fs-jetpack": "^2.2.0",
"install": "^0.12.2",
"colors": "^1.3.2",
"commander": "^2.19.0",
"fs-extra": "^7.0.0",
"git-config-path": "^2.0.0",
"github-username": "^4.1.0",
"glob": "^7.1.3",
"inquirer": "^6.2.0",
"lodash": "^4.17.11",
"mem-fs": "^1.1.3",
"mem-fs-editor": "^5.1.0",
"node-compat-require": "^1.0.5",
"parse-git-config": "^3.0.0",
"safe-commander": "^2.11.2"
}
}