-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.1 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
{
"name": "lego-bricks-h",
"version": "1.0.3",
"private": false,
"author": "huozhenwei",
"scripts": {
"serve": "vue-cli-service serve",
"build": "npm run clean && npm run build:esm && npm run build:umd",
"test:watch": "vue-cli-service test:unit --watch",
"test": "vue-cli-service test:unit",
"lint": "vue-cli-service lint --max-warnings 5",
"build:esm": "rollup --config build/rollup.esm.config.js",
"build:umd": "rollup --config build/rollup.umd.config.js",
"clean": "rimraf ./dist",
"prepublishOnly": "npm run lint && npm run test&& npm run build",
"prepare": "husky install"
},
"main": "dist/lego-bricks-h.umd.js",
"module": "dist/lego-bricks-h.esm.js",
"files": [
"dist"
],
"dependencies": {
"core-js": "^3.6.5",
"lodash-es": "^4.17.21"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^11.1.1",
"@rollup/plugin-typescript": "^8.1.1",
"@types/jest": "^27.0.1",
"@types/lodash-es": "^4.17.6",
"@typescript-eslint/eslint-plugin": "^2.33.0",
"@typescript-eslint/parser": "^2.33.0",
"@vue/cli-plugin-babel": "~4.5.0",
"@vue/cli-plugin-eslint": "~4.5.0",
"@vue/cli-plugin-typescript": "~4.5.0",
"@vue/cli-plugin-unit-jest": "~5.0.0",
"@vue/cli-service": "~4.5.0",
"@vue/compiler-sfc": "^3.0.0",
"@vue/eslint-config-typescript": "^5.0.2",
"@vue/test-utils": "^2.0.0-0",
"@vue/vue3-jest": "^27.0.0-alpha.1",
"babel-jest": "^27.0.6",
"eslint": "^6.7.2",
"eslint-plugin-vue": "^7.0.0-0",
"husky": "^8.0.1",
"jest": "^27.0.5",
"rimraf": "^3.0.2",
"rollup": "^2.38.5",
"rollup-plugin-css-only": "^3.1.0",
"rollup-plugin-typescript2": "^0.29.0",
"rollup-plugin-vue": "^6.0.0",
"ts-jest": "^27.0.4",
"typescript": "~4.3.5",
"vue": "^3.0.0"
},
"peerDependencies": {
"vue": "^3.0.0"
},
"homepage": "https://github.com/huozhenwei/lego-bricks-h",
"keywords": [
"Component",
"UI",
"Vue3"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/huozhenwei/lego-bricks-h"
},
"types": "dist/index.d.ts"
}