This repository has been archived by the owner on Apr 21, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
84 lines (84 loc) · 2.12 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
{
"name": "wxml2vue",
"version": "1.0.0",
"description": "Transform wxml to vue sytax",
"main": "src/index.js",
"scripts": {
"test": "jest",
"commit": "npx git-cz",
"release": "npx standard-version",
"lint": "eslint ./src",
"lint:fix": "eslint --fix --ext .js,.jsx ./src",
"format": "pretty-quick --pattern \"**/*.*(js|jsx)\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/AngusFu/wxml2vue.git"
},
"author": "wemlion <angusfu1126@qq.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/AngusFu/wxml2vue/issues"
},
"homepage": "https://github.com/AngusFu/wxml2vue#readme",
"dependencies": {
"@babel/parser": "^7.5.5",
"@babel/traverse": "^7.5.5",
"hast-util-to-html": "^6.0.2",
"lodash": "^4.17.11",
"parse-entities": "^1.2.2",
"rehype-parse": "^6.0.0",
"rehype-stringify": "^6.0.0",
"to-vfile": "^6.0.0",
"unified": "^8.0.0",
"unist-util-is": "^3.0.0",
"unist-util-select": "^2.0.2",
"unist-util-source": "^1.0.5",
"unist-util-visit": "^1.4.1",
"vfile-reporter": "^6.0.0"
},
"devDependencies": {
"@commitlint/cli": "^8.0.0",
"@commitlint/config-conventional": "^8.0.0",
"babel-eslint": "^10.0.2",
"commitizen": "^3.1.1",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^6.0.1",
"eslint-config-prettier": "^6.0.0",
"eslint-formatter-friendly": "^6.0.0",
"eslint-plugin-prettier": "^3.1.0",
"fs-extra": "^8.1.0",
"husky": "^2.7.0",
"jest": "^24.8.0",
"lint-staged": "^8.2.1",
"prettier": "^1.18.2",
"pretty-quick": "^1.11.1",
"standard-version": "^6.0.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "pretty-quick --staged && lint-staged"
}
},
"lint-staged": {
"linters": {
"*.{js,jsx}": [
"eslint --format friendly"
]
},
"ignore": [
"**/dist/*.js"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}