This repository has been archived by the owner on Aug 30, 2022. It is now read-only.
forked from Frondor/vue-line-clamp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.62 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
{
"name": "vue-line-clamp",
"version": "1.3.3",
"description": "A simple, fast and lightweight directive for truncating multi line texts using \"cross-browser\" CSS strategies.",
"main": "dist/vue-line-clamp.js",
"browser": "dist/vue-line-clamp.js",
"files": [
"dist"
],
"scripts": {
"dev": "webpack --config build/webpack.dev.js",
"build": "webpack --config build/webpack.prod.js",
"start": "webpack-dev-server --config build/webpack.dev.js --hot --open",
"test": "jest",
"coverage": "npm run test -- --coverage",
"prepublishOnly": "npm run build",
"upgrade-all": "npx npm-check-updates -u && npm i"
},
"author": {
"name": "Federico Vázquez (Frondor)",
"url": "https://frondor.github.io"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Frondor/vue-line-clamp.git"
},
"bugs": {
"url": "https://github.com/Frondor/vue-line-clamp/issues"
},
"homepage": "https://github.com/Frondor/vue-line-clamp#readme",
"sideEffects": false,
"devDependencies": {
"@babel/core": "^7.2.0",
"@babel/preset-env": "^7.2.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^24.0.0",
"babel-loader": "^8.0.4",
"clean-webpack-plugin": "^1.0.0",
"html-webpack-plugin": "^3.2.0",
"jest": "^24.0.0",
"webpack": "^4.27.1",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.11",
"webpack-merge": "^4.1.5"
},
"peerDependencies": {
"vue": "^2.*"
},
"engines": {
"node": ">= 8"
},
"keywords": [
"vue",
"ellipsis",
"line-clamp",
"text-truncate",
"truncate",
"multiline"
]
}