forked from Justineo/vue-clamp
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
65 lines (65 loc) · 1.72 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
{
"name": "@boyuai/vue-clamp",
"version": "0.4.2",
"description": "Clamping multiline contents with ease.",
"scripts": {
"serve": "vue-cli-service serve",
"build": "NODE_ENV=production rollup -c",
"lint": "vue-cli-service lint",
"build:demo": "vue-cli-service build",
"prepublishOnly": "cp ./src/components/* .",
"publish": "rm ./Clamp.js ./utils.js"
},
"main": "dist/vue-clamp.js",
"module": "Clamp.js",
"dependencies": {
"core-js": "^3.6.5",
"raf": "^3.4.1",
"resize-detector": "^0.1.10"
},
"devDependencies": {
"@rollup/plugin-buble": "^0.21.3",
"@rollup/plugin-node-resolve": "^7.1.3",
"@vue/cli-plugin-babel": "^4.4.6",
"@vue/cli-plugin-eslint": "^4.4.6",
"@vue/cli-service": "^4.4.6",
"@vue/eslint-config-standard": "^4.0.0",
"babel-eslint": "^10.1.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-vue": "^6.2.2",
"highlight.js": "^9.18.3",
"prettier": "^2.0.5",
"prettier-eslint": "^9.0.2",
"qs": "^6.9.4",
"rollup": "^2.23.0",
"rollup-plugin-terser": "^5.3.0",
"rollup-plugin-vue": "^5.1.9",
"spectre.css": "^0.5.9",
"stylus": "^0.54.8",
"stylus-loader": "^3.0.2",
"vue": "^2.6.11",
"vue-template-compiler": "^2.6.11"
},
"peerDependencies": {
"vue": "^2.6.0"
},
"bugs": {
"url": "https://github.com/boyuai/vue-clamp/issues"
},
"homepage": "https://boyuai.github.io/vue-clamp/demo/",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/boyuai/vue-clamp.git"
},
"keywords": [
"clamp",
"ellipsis",
"clamp-text",
"truncate-text",
"multiline-text",
"vue"
]
}