forked from pablosichert/react-truncate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2.15 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-truncate",
"version": "2.1.4",
"description": "React component for truncating multi-line spans and adding an ellipsis",
"main": "lib/Truncate.CommonJS.js",
"module": "lib/Truncate.js",
"files": [
"lib"
],
"scripts": {
"compile": "mkdir lib; babel ./src --out-file ./lib/Truncate.js && BABEL_ENV=CommonJS babel ./src --out-file ./lib/Truncate.CommonJS.js",
"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": "BABEL_ENV=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-truncate.git"
},
"homepage": "https://github.com/One-com/react-truncate",
"keywords": [
"react",
"truncate",
"ellipsis",
"multiline"
],
"author": "Pablo Sichert <[email protected]>",
"license": "ISC",
"peerDependencies": {
"prop-types": "<= 15.x.x",
"react": "<= 15.x.x"
},
"devDependencies": {
"babel-cli": "^6.23.0",
"babel-eslint": "^7.1.1",
"babel-plugin-syntax-async-functions": "^6.13.0",
"babel-plugin-transform-async-to-generator": "^6.22.0",
"babel-plugin-transform-class-properties": "^6.23.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.23.0",
"canvas": "^1.6.3",
"common-tags": "^1.4.0",
"coveralls": "^2.11.16",
"eslint": "^3.16.0",
"eslint-config-onelint": "^2.0.0",
"eslint-config-onelint-react": "^2.0.1",
"eslint-plugin-react": "^6.10.0",
"jsdom": "^9.11.0",
"mocha": "^3.2.0",
"nyc": "^10.1.2",
"raf": "^3.3.0",
"prop-types": "^15.5.4",
"react": "^15.5.4",
"react-addons-test-utils": "^15.5.1",
"react-dom": "^15.5.4",
"sinon": "^1.17.7",
"unexpected": "^10.26.0",
"unexpected-dom": "^3.1.1",
"unexpected-react": "^3.4.0",
"unexpected-sinon": "^10.7.0"
}
}