-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.38 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
{
"name": "react-clampio",
"version": "0.1.0",
"description": "React component for clamping lines. It adds ellipsis if text exceeds the defined max lines value",
"main": "./dist/index.js",
"files": [
"dist"
],
"scripts": {
"build": "webpack",
"start": "webpack-dev-server --config ./example/webpack.config.js",
"clean": "rimraf dist",
"prebuild": "yarn clean",
"prepare": "yarn build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jszombies/react-clampio.git"
},
"keywords": [
"react",
"clamp",
"ellipsis",
"text"
],
"author": "Alexey Vakulich <alexey.vakulich@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/jszombies/react-clampio/issues"
},
"homepage": "https://github.com/jszombies/react-clampio#readme",
"peerDependencies": {
"prop-types": "^15.6.2",
"react": "^16.4.2"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"prop-types": "^15.6.2",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"rimraf": "^2.6.2",
"webpack": "^4.17.1",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.5"
}
}