forked from devzonetech/react-show-more-text
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.31 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
69
70
71
{
"name": "react-show-more-text",
"version": "1.3.0",
"description": "The text surrounded by the component will be truncated. Anything surrounded by the component could be evaluated as text. The component react-show-more-text/ShowMoreText is fork of react-show-more/ShowMore, applied improvements, works with React 16.x.x, added onClick event.",
"main": "lib/ShowMoreText.js",
"files": [
"lib"
],
"scripts": {
"compile": "babel ./src --out-dir ./lib",
"coverage": "nyc npm test && nyc report --reporter=text-lcov",
"lint": "eslint .",
"prepublish": "rm -rf ./lib && npm run compile",
"preversion": "npm run test",
"report-coverage": "npm run coverage | coveralls",
"test": "mocha --compilers js:babel-core/register --require babel-polyfill",
"travis": "npm run lint && npm run compile && npm run test"
},
"repository": {
"type": "git",
"url": "[email protected]:devzonetech/react-show-more-text.git"
},
"homepage": "https://github.com/devzonetech/react-show-more-text",
"keywords": [
"react",
"show more",
"ellipsis",
"multiline",
"show more text",
"show partial text",
"hide partial text",
"show-more fix",
"show text",
"hide text"
],
"author": "Zdravko Shishmanov <[email protected]>",
"license": "ISC",
"peerDependencies": {
"react": ">= 16.x.x"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.1.2",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-syntax-async-functions": "^6.13.0",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"coveralls": "^3.0.7",
"create-react-app": "^3.2.0",
"eslint": "^4.14.0",
"eslint-config-onelint": "^3.0.0",
"eslint-config-onelint-react": "^2.0.1",
"eslint-plugin-react": "^7.16.0",
"mocha": "^4.1.0",
"nyc": "^14.1.1",
"react": "^16.11.0",
"react-dom": "^16.11.0",
"react-test-renderer": "^16.11.0",
"unexpected": "^10.40.2",
"unexpected-react": "^5.0.4"
},
"dependencies": {
"prop-types": "^15.7.2",
"react-truncate": "^2.1.5"
}
}