-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
96 lines (96 loc) · 2.65 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
89
90
91
92
93
94
95
96
{
"name": "@fe6/water",
"description": "An enterprise-class UI design language and Vue components implementation.",
"version": "0.20.2",
"author": "李梦龙 <649076408@qq.com>",
"main": "dist/water.umd.js",
"unpkg": "dist/water.umd.js",
"files": [
"dist",
"src"
],
"scripts": {
"start": "vue-cli-service serve",
"build": "yarn build:lib",
"build:site": "vue-cli-service build --modern --mode site",
"build:lib": "vue-cli-service build --target lib --name water 'src/components/water.ts' --mode lib",
"site": "yarn build:site && bash scripts/deploy-gh.sh",
"lint": "yarn jslint && yarn style",
"jslint": "vue-cli-service lint",
"style": "stylelint ./src/**/*.scss --fix",
"test": "vue-cli-service test:unit",
"codecov": "codecov ./coverage/clover.xml",
"prepublishOnly": "yarn build"
},
"devDependencies": {
"@fe6/norm": "^1.0.7",
"@types/codemirror": "^0.0.76",
"@types/gsap": "^1.20.2",
"@types/jest": "^23.1.4",
"@types/lodash": "^4.14.133",
"@vue/cli-plugin-babel": "^3.5.0",
"@vue/cli-plugin-eslint": "^3.5.0",
"@vue/cli-plugin-typescript": "^3.5.0",
"@vue/cli-plugin-unit-jest": "^3.5.0",
"@vue/cli-service": "^3.5.0",
"@vue/test-utils": "1.0.0-beta.29",
"add-dom-event-listener": "^1.1.0",
"babel-core": "7.0.0-bridge.0",
"codecov": "^3.3.0",
"codemirror": "^5.47.0",
"core-js": "^2.6.5",
"fibers": "^3.1.1",
"husky": "^4.0.6",
"jest-environment-jsdom-global": "^1.2.0",
"lottie-web": "^5.5.9",
"node-sass": "^4.11.0",
"reflect-metadata": "^0.1.13",
"register-service-worker": "^1.6.2",
"sass": "^1.17.2",
"sass-loader": "^7.1.0",
"stylelint-webpack-plugin": "^1.1.2",
"ts-jest": "^23.0.0",
"typescript": "^3.2.1",
"vue-class-component": "^6.0.0",
"vue-codemirror": "^4.0.6",
"vue-property-decorator": "^8.2.1",
"vue-router": "^3.0.2",
"water-helper-maps": "^0.1.0"
},
"license": "MIT",
"homepage": "https://github.com/fe6/water#readme",
"bugs": {
"url": "https://github.com/fe6/water/issues"
},
"repository": {
"type": "git",
"url": "git@github.com:fe6/water.git"
},
"keywords": [
"eleme",
"vue",
"vue-design",
"ant",
"design",
"components",
"ui",
"framework",
"frontend"
],
"husky": {
"hooks": {
"pre-commit": "yarn lint && yarn test"
}
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "^2.15.0",
"lodash": "^4.17.15",
"moment": "^2.24.0",
"vue": "^2.6.10",
"vue-template-compiler": "^2.6.10"
},
"peerDependencies": {
"vue": "^2.6.10",
"vue-template-compiler": "^2.6.10"
}
}