forked from maslianok/react-resize-detector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.61 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
{
"author": "Vitalii Maslianok <[email protected]> (https://github.com/maslianok)",
"version": "0.3.3",
"bugs": {
"url": "https://github.com/maslianok/react-resize-detector/issues"
},
"description": "React resize detector",
"peerDependencies": {
"react": "^0.14.7 || ^15.0.0"
},
"devDependencies": {
"babel-cli": "^6.5.1",
"babel-eslint": "^6.0.2",
"babel-plugin-transform-object-assign": "^6.5.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.3.13",
"eslint": "^3.5.0",
"eslint-config-airbnb": "^11.1.0",
"eslint-plugin-import": "^1.0.3",
"eslint-plugin-jsx-a11y": "^2.2.2",
"eslint-plugin-react": "^6.2.1",
"react": "^15.0.1",
"rimraf": "^2.3.4"
},
"directories": {
"example": "example"
},
"homepage": "https://github.com/maslianok/react-resize-detector",
"keywords": [
"react",
"resize",
"detector"
],
"license": "MIT",
"main": "lib/index.js",
"maintainers": [
"maslianok <[email protected]>"
],
"name": "react-resize-detector",
"repository": {
"type": "git",
"url": "git+https://github.com/maslianok/react-resize-detector.git"
},
"scripts": {
"build": "babel --presets=react,es2015 --plugins=transform-object-assign src --out-dir lib",
"clean": "rimraf lib",
"lint": "eslint -c .eslintrc src",
"prepublish": "npm run lint && npm run clean && npm run build",
"test:cov": "babel-node ./node_modules/.bin/isparta cover ./node_modules/.bin/_mocha -- --recursive",
"test:watch": "NODE_ENV=test mocha --compilers js:babel/register --recursive --watch"
},
"dependencies": {}
}