-
Notifications
You must be signed in to change notification settings - Fork 83
/
package.json
63 lines (63 loc) · 1.88 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
{
"name": "react-show-more",
"version": "2.0.0",
"description": "React component for truncating multi-line spans and adding an ellipsis",
"main": "lib/ShowMore.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]:One-com/react-show-more.git"
},
"homepage": "https://github.com/One-com/react-show-more",
"keywords": [
"react",
"show more",
"ellipsis",
"multiline"
],
"author": "Pablo Sichert <[email protected]>",
"license": "ISC",
"peerDependencies": {
"react": "<= 16.x.x"
},
"devDependencies": {
"babel-cli": "^6.22.2",
"babel-core": "^6.22.1",
"babel-eslint": "^7.1.1",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-syntax-async-functions": "^6.13.0",
"babel-plugin-transform-async-to-generator": "^6.22.0",
"babel-plugin-transform-class-properties": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.22.0",
"babel-polyfill": "^6.22.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.22.0",
"coveralls": "^2.11.15",
"eslint": "^3.14.1",
"eslint-config-onelint": "^2.0.0",
"eslint-config-onelint-react": "^2.0.1",
"mocha": "^3.2.0",
"nyc": "^10.1.2",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"unexpected": "^10.23.0",
"unexpected-react": "^5.0.1",
"react-test-renderer": "^16.0.0",
"prop-types": "^15.5.10"
},
"dependencies": {
"react-truncate": "^2.3.0"
}
}