This repository has been archived by the owner on Jan 5, 2024. It is now read-only.
forked from xiaody/react-lines-ellipsis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.46 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
{
"name": "react-lines-ellipsis",
"version": "0.5.8",
"description": "Simple multiline ellipsis component for React.JS",
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"test": "standard",
"prebuild": "mkdir -p lib && cp src/common.js lib",
"build": "babel src/index.js > lib/index.js && babel src/html.js > lib/html.js",
"docs": "browserify -e docs/app.js | uglifyjs -m > docs/app.bundle.js",
"docs:watch": "watchify -e docs/app.js -o docs/app.bundle.js",
"prepublish": "npm run build"
},
"keywords": [
"react",
"react-component",
"multiline",
"ellipsis",
"dotdotdot",
"clamp",
"read-more"
],
"author": "xiaody",
"license": "MIT",
"repository": "xiaody/react-lines-ellipsis",
"peerDependencies": {
"react": "*",
"react-dom": "*"
},
"devDependencies": {
"aliasify": "2.1.0",
"babel-cli": "6.24.1",
"babel-plugin-transform-react-jsx": "6.24.1",
"babel-preset-es2015": "6.24.1",
"babelify": "^7.3.0",
"browserify": "14.3.0",
"core-js": "2.4.1",
"lodash": "4.17.4",
"preact": "8.1.0",
"preact-compat": "3.16.0",
"raf": "3.3.2",
"standard": "10.0.2",
"uglifyjs": "2.4.10",
"watchify": "3.9.0"
},
"standard": {
"ignore": [
"lib",
"docs/*.bundle.js"
]
},
"browserify": {
"transform": [
"babelify",
"aliasify"
]
},
"aliasify": {
"aliases": {
"react": "preact-compat"
}
}
}