-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
71 lines (71 loc) · 2.05 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-read-more",
"version": "1.0.0",
"description": "React component for truncating multi-line spans and adding an ellipsis",
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"compile": "babel ./src --out-dir ./lib",
"coverage": "nyc npm test && nyc report --reporter=text-lcov",
"lint": "eslint .",
"prepublish": "rimraf ./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": "git@github.com:huytbt/react-read-more.git"
},
"homepage": "https://github.com/huytbt/react-read-more",
"keywords": [
"react",
"truncate",
"ellipsis",
"readmore",
"multiline"
],
"author": "Huy T. (huytbt@gmail.com)",
"license": "ISC",
"peerDependencies": {
"react": "<= 15.x.x"
},
"devDependencies": {
"babel-cli": "6.16.0",
"babel-eslint": "7.0.0",
"babel-plugin-add-module-exports": "0.2.1",
"babel-plugin-syntax-async-functions": "6.13.0",
"babel-plugin-transform-async-to-generator": "6.16.0",
"babel-plugin-transform-class-properties": "6.16.0",
"babel-plugin-transform-object-rest-spread": "6.16.0",
"babel-polyfill": "6.16.0",
"babel-preset-es2015": "6.16.0",
"babel-preset-react": "6.16.0",
"canvas": "1.5.0",
"common-tags": "1.3.1",
"coveralls": "2.11.14",
"eslint": "3.7.1",
"eslint-config-onelint": "1.1.0",
"eslint-config-onelint-react": "0.0.3",
"eslint-plugin-react": "6.3.0",
"jsdom": "9.6.0",
"mocha": "3.1.0",
"nyc": "8.3.1",
"prop-types": "^15.6.1",
"raf": "3.3.0",
"react": "15.3.2",
"react-addons-test-utils": "15.3.2",
"react-dom": "15.3.2",
"sinon": "1.17.6",
"unexpected": "10.18.1",
"unexpected-dom": "3.1.0",
"unexpected-react": "3.2.4",
"unexpected-sinon": "10.5.0"
},
"dependencies": {
"rimraf": "^2.5.4"
}
}