-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
54 lines (54 loc) · 1.3 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
{
"name": "react-overflow",
"version": "0.2.1",
"description": "A React component that detects when it's overflowed by its content",
"keywords": [
"react",
"overflow"
],
"author": {
"name": "Nick Uraltsev",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/nickuraltsev/react-overflow.git"
},
"bugs": {
"url": "https://github.com/nickuraltsev/react-overflow/issues"
},
"license": "MIT",
"main": "lib/index.js",
"dependencies": {
"prop-types": "15.6.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"babel-preset-react": "^6.24.1",
"eslint": "^4.11.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-react": "^7.4.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"babel-eslint": "^8.0.2",
"rimraf": "^2.6.2"
},
"peerDependencies": {
"react": ">=15"
},
"prettier": {
"useTabs": false,
"semi": true,
"singleQuote": true,
"trailingComma": "es5",
"bracketSpacing": true
},
"scripts": {
"clean": "rimraf lib",
"build": "npm run clean && babel src --out-dir lib",
"lint": "eslint src --ext .js,.jsx"
}
}