-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
67 lines (67 loc) · 1.71 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
{
"name": "react-ellipsis-text",
"version": "1.2.2",
"description": "React component which ellipsis text",
"main": "index.js",
"scripts": {
"browser": "browser-sync start --files example/* --server example",
"watch:example": "watchify example/app.js -dv -o example/bundle.js",
"start:example": "yarn run watch:example & yarn run browser",
"test:local": "jest --watch",
"test": "jest && codecov",
"clean": "rimraf lib",
"build": "babel src --out-dir lib"
},
"repository": {
"type": "git",
"url": "git://github.com/mobilusoss/react-ellipsis-text"
},
"keywords": [
"react",
"react-component",
"ellipsis"
],
"author": "Takeharu.Oshida",
"license": "MIT",
"bugs": {
"url": "https://github.com/mobilusoss/react-ellipsis-text/issues"
},
"homepage": "https://github.com/mobilusoss/react-ellipsis-text",
"devDependencies": {
"@babel/cli": "^7.5.0",
"@babel/core": "^7.5.4",
"@babel/polyfill": "^7.4.4",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"@testing-library/react": "^9.1.3",
"babel-eslint": "^10.0.2",
"babelify": "^10.0.0",
"browser-sync": "^2.26.7",
"browserify": "^16.3.0",
"codecov": "^3.5.0",
"eslint": "^6.0.1",
"eslint-config-airbnb": "^17.1.1",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"jest": "^24.9.0",
"rimraf": "^2.6.3",
"watchify": "^3.11.1"
},
"dependencies": {
"core-js": "3",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-dom": "^16.8.6"
},
"peerDependencies": {
"react": "^16.9.0",
"react-dom": "^16.9.0"
},
"browserify": {
"transform": [
[
"babelify"
]
]
}
}