-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
74 lines (74 loc) · 1.92 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
{
"name": "vue-composition-toolkit",
"version": "0.0.0",
"description": "Vue composition-api toolkit.",
"main": "index.js",
"repository": "https://github.com/shuidi-fed/vue-composition-toolkit.git",
"author": "HcySunYang <HcySunYang@outlook.com>",
"license": "MIT",
"scripts": {
"dev": "node scripts/dev.js",
"build": "node scripts/build.js",
"test": "jest",
"commit": "git-cz",
"lint": "prettier --write --parser typescript \"src/**/*.ts?(x)\"",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md"
},
"files": [
"dist"
],
"dependencies": {
"copy-text-to-clipboard": "^2.1.1",
"lodash.debounce": "^4.0.8",
"lodash.throttle": "^4.1.1"
},
"devDependencies": {
"@microsoft/api-extractor": "^7.5.2",
"@types/jest": "^24.0.19",
"@types/lodash.debounce": "^4.0.6",
"@types/lodash.throttle": "^4.1.6",
"brotli": "^1.3.2",
"chalk": "^2.4.2",
"conventional-changelog-cli": "^2.0.25",
"cz-conventional-changelog": "^3.0.2",
"emotion": "^10.0.23",
"execa": "^3.2.0",
"fs-extra": "^8.1.0",
"husky": "^3.0.9",
"jest": "^24.9.0",
"lint-staged": "^9.4.2",
"marked": "^0.7.0",
"minimist": "^1.2.0",
"prettier": "^1.18.2",
"raf-stub": "^3.0.0",
"rollup": "^1.25.2",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-terser": "^5.1.2",
"rollup-plugin-typescript2": "^0.24.3",
"ts-jest": "^24.1.0",
"typescript": "^3.6.4",
"zlib": "^1.0.5"
},
"lint-staged": {
"*.js": [
"prettier --write",
"git add"
],
"*.ts?(x)": [
"prettier --parser=typescript --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}