-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 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
{
"name": "vue-awesome-directives",
"version": "0.0.8",
"description": "a vue directives collection",
"main": "lib/index.min.js",
"scripts": {
"build": "node ./script/build.js -s true",
"dev": "rollup -c -w",
"pretest": "npm run build",
"lint": "eslint --fix **/*.{ts,jsx,js,vue} & npm run format",
"format": "npx prettier --write .",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"test": "npx jest",
"doc": "npx typedoc src/index.ts",
"prepublish": "npm run build"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "https://gitee.com/wxwzl/vue-awesome-directives.git"
},
"typings": "lib/index",
"keywords": [
"directives",
"vue",
"sticky"
],
"pnpm": {
"overrides": {
"vue": "2.6.14"
}
},
"author": "wxwzl",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@rollup/plugin-alias": "^3.1.2",
"@rollup/plugin-commonjs": "^19.0.0",
"@rollup/plugin-eslint": "^8.0.1",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-typescript": "^8.2.1",
"@types/jest": "^26.0.24",
"@types/node": "^16.4.0",
"@typescript-eslint/eslint-plugin": "^4.28.3",
"@typescript-eslint/parser": "^4.28.3",
"brotli": "^1.3.2",
"chalk": "4.1.0",
"conventional-changelog-cli": "^2.1.1",
"core-js": "^3.15.2",
"cross-env": "^7.0.3",
"eslint": "^7.30.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-html": "^6.1.2",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-vue": "^7.13.0",
"execa": "4.0.2",
"fs-extra": "^10.0.1",
"husky": "^7.0.1",
"jest": "^27.0.6",
"json-templater": "^1.2.0",
"lint-staged": "^11.0.0",
"minimist": "^1.2.6",
"path": "^0.12.7",
"prettier": "^2.3.2",
"rollup": "^2.53.1",
"rollup-plugin-dts": "^4.2.0",
"rollup-plugin-node-polyfills": "^0.2.1",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.31.2",
"ts-jest": "^27.0.4",
"ts-node": "^10.7.0",
"tslib": "^2.3.0",
"typescript": "^4.3.5",
"uppercamelcase": "^3.0.0",
"vue": "2.6.14"
},
"peerDependencies": {
"vue": "2.6.14"
},
"engines": {
"node": ">=10",
"pnpm": ">=6.30.0"
}
}