forked from pablosichert/react-truncate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.03 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
{
"name": "react-truncate",
"version": "1.0.5",
"description": "React component for truncating multi-line spans and adding an ellipsis",
"main": "lib/Truncate.js",
"files": [
"lib"
],
"scripts": {
"compile": "babel ./src --out-dir ./lib",
"prepublish": "npm run compile"
},
"repository": {
"type": "git",
"url": "[email protected]:One-com/react-truncate.git"
},
"homepage": "https://github.com/One-com/react-truncate",
"keywords": [
"react",
"truncate",
"ellipsis",
"multiline"
],
"author": "Pablo Sichert <[email protected]>",
"license": "ISC",
"peerDependencies": {
"react": "<= 15.x.x"
},
"devDependencies": {
"babel-cli": "6.8.0",
"babel-eslint": "6.0.4",
"babel-plugin-add-module-exports": "0.2.0",
"babel-plugin-transform-class-properties": "6.8.0",
"babel-preset-es2015": "6.6.0",
"babel-preset-react": "6.5.0",
"eslint": "2.9.0",
"eslint-config-onelint": "1.1.0",
"eslint-config-onelint-react": "0.0.3",
"eslint-plugin-react": "5.1.1"
}
}