-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
57 lines (57 loc) · 1.57 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
{
"name": "hippy-vue-html",
"version": "0.0.10",
"description": "A rich text renderer for hippy-vue",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "[email protected]:hippy-contrib/hippy-vue-html.git"
},
"author": "kiritocui",
"license": "Apache-2.0",
"scripts": {
"prepare": "npx husky install",
"dev": "rollup --watch --config rollup.config.js",
"build": "rollup --config rollup.config.js",
"build:version": "yarn version --patch --message \"chore(release): publish v%s\"",
"lint": "eslint ./src",
"lint:fix": "eslint --fix ./src",
"pub": "yarn build && yarn build:version && npm publish && git push",
"test": "jest"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,js,vue}": [
"eslint --fix",
"prettier --write",
"git add"
]
},
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.17.9",
"@babel/eslint-parser": "^7.17.0",
"@babel/preset-env": "^7.19.4",
"@rollup/plugin-babel": "^5.0.0",
"@vue/compiler-sfc": "^3.2.31",
"eslint": "^7.5.0",
"eslint-config-prettier": "^8.4.0",
"eslint-config-tencent": "^1.0.3",
"eslint-config-vue": "^2.0.2",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-vue": "^8.5.0",
"husky": "4",
"jest": "^28.1.3",
"lint-staged": "^12.3.4",
"prettier": "^2.5.1",
"rollup": "^1.27.5",
"rollup-plugin-babel": "3.0.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-vue": "^6.0.0"
}
}