forked from xiaody/react-lines-ellipsis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.63 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
{
"name": "react-lines-ellipsis",
"version": "0.15.0",
"description": "Simple multiline ellipsis component for React.JS",
"main": "lib/index.js",
"module": "lib/index.modern.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"test": "standard && jest",
"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,ts}",
"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.14.3",
"@babel/plugin-transform-react-jsx": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@types/react": "^17.0.20",
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.1",
"core-js": "^3.12.1",
"enzyme": "^3.11.0",
"jest": "^26.6.3",
"jest-enzyme": "^7.1.2",
"lodash": "^4.17.11",
"microbundle": "^0.13.0",
"raf": "^3.4.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"resize-observer-polyfill": "^1.5.1",
"snowpack": "^3.5.0",
"standard": "^16.0.3",
"typescript": "^4.4.2"
},
"standard": {
"ignore": [
"lib",
"docs"
]
},
"jest": {
"testURL": "http://localhost/",
"setupFilesAfterEnv": [
"<rootDir>/tests/setupFiles/setupTests.js"
]
}
}