-
Notifications
You must be signed in to change notification settings - Fork 78
/
Copy pathpackage.json
57 lines (57 loc) · 1.33 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
{
"name": "react-lines-ellipsis",
"version": "0.15.4",
"description": "Simple multiline ellipsis component for React.JS",
"main": "lib/index.js",
"module": "lib/index.modern.mjs",
"files": [
"lib"
],
"scripts": {
"test": "standard",
"lint:fix": "standard --fix",
"prebuild": "rm -rf lib; mkdir -p lib",
"prepare": "npm run build",
"build": "microbundle -f modern,cjs --no-compress --no-sourcemap --jsx React.createElement src/*.{js,jsx}",
"dev:docs": "snowpack dev",
"build:docs": "snowpack 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": {
"@babel/core": "^7.18.5",
"@babel/plugin-transform-react-jsx": "^7.17.12",
"@babel/preset-env": "^7.18.2",
"@types/react": "^18.0.12",
"@types/react-dom": "^18.0.5",
"core-js": "^3.23.0",
"enzyme": "^3.11.0",
"lodash": "^4.17.11",
"microbundle": "^0.15.0",
"raf": "^3.4.1",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"snowpack": "^3.8.8",
"standard": "^16.0.4"
},
"standard": {
"ignore": [
"lib",
"docs"
]
}
}