-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.25 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
{
"name": "mini-vue-impl",
"version": "1.0.0",
"description": "Implement a mini Vue to help me understand Vue3",
"keywords": [
"vue",
"vue3",
"mini-vue",
"study"
],
"license": "ISC",
"author": "jp-liu <fortune_coder@foxmail.com>",
"main": "lib/jp-liu-mini-vue.cjs.js",
"module": "lib/jp-liu-mini-vue.esm.js",
"scripts": {
"build": "rollup -c rollup.config.js",
"test": "jest",
"prepare": "husky install",
"commit": "git-cz",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"devDependencies": {
"@antfu/eslint-config": "^0.20.2",
"@babel/core": "^7.16.0",
"@babel/preset-env": "^7.16.4",
"@babel/preset-typescript": "^7.16.0",
"@commitlint/config-conventional": "^15.0.0",
"@rollup/plugin-typescript": "^8.3.0",
"@types/jest": "^27.0.3",
"babel-jest": "^27.4.4",
"commitizen": "^4.2.4",
"commitlint": "^15.0.0",
"commitlint-config-cz": "^0.13.2",
"cz-conventional-changelog": "^3.3.0",
"cz-customizable": "^6.3.0",
"eslint": "^8.13.0",
"husky": "^7.0.4",
"jest": "^27.4.4",
"lint-staged": "^12.1.2",
"rollup": "^2.61.1",
"typescript": "^4.5.2"
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
}
}
}