-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.38 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
{
"name": "remax-vant-cli",
"version": "0.8.0",
"description": "yet, remax-vant scaffold tool.",
"keywords": [
"remax",
"vant-weapp"
],
"author": "huang.jian <[email protected]>",
"license": "MIT",
"bin": {
"remant": "./bin/remant.js"
},
"scripts": {
"precompile": "rm -rf lib",
"compile": "babel src --out-dir . --extensions '.ts' --copy-files",
"dev": "yarn compile --watch",
"test": "jest --config jest.config.js --watch",
"test:ci": "jest --config jest.config.js --coverage",
"prepublishOnly": "yarn compile",
"semantic-release": "semantic-release"
},
"files": [
"bin",
"lib"
],
"dependencies": {
"@remax/types": "^2.5.3",
"camelcase": "^6.0.0",
"chalk": "^4.0.0",
"cli-cursor": "^3.1.0",
"cli-table3": "^0.6.0",
"commander": "^5.1.0",
"fs-extra": "^9.0.0",
"handlebars": "^4.7.6",
"node-emoji": "^1.10.0",
"pascal-case": "^3.1.1",
"prompts": "^2.3.2"
},
"devDependencies": {
"@babel/cli": "^7.10.1",
"@babel/core": "^7.10.2",
"@babel/preset-env": "^7.10.2",
"@babel/preset-typescript": "^7.10.1",
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@types/fs-extra": "^9.0.1",
"@types/jest": "^26.0.0",
"@types/node": "^14.0.9",
"@types/node-emoji": "^1.8.1",
"@types/prompts": "^2.0.8",
"@types/webpack": "^4.41.17",
"@typescript-eslint/eslint-plugin": "^3.0.2",
"@typescript-eslint/parser": "^3.0.2",
"babel-jest": "^26.0.1",
"cz-conventional-changelog": "^3.2.0",
"eslint": "^7.1.0",
"eslint-config-airbnb-typescript": "^7.2.1",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"husky": "^4.2.5",
"jest": "^26.0.1",
"lint-staged": ">=10",
"prettier": "^2.0.5",
"pretty-quick": "^2.0.1",
"semantic-release": "^17.1.1",
"typescript": "^3.7.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"peerDependencies": {
"remax": "^2.5.5"
},
"repository": {
"type": "git",
"url": "[email protected]:huang-xiao-jian/remax-vant-cli.git"
}
}