-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
43 lines (43 loc) · 1.08 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
{
"name": "react-iframe-resizer",
"version": "1.0.1",
"description": "iframe component enhanced by iframe-resizer",
"main": "dist/index.js",
"js:next": "src/index.js",
"directories": {
"test": "test"
},
"files": [
"dist",
"LICENSE.md"
],
"scripts": {
"build": "rollup -c",
"lint": "eslint --ext .js --ignore-path .gitignore --ignore-pattern rollup.config.js .",
"prepublish": "npm run build"
},
"author": "James Canning <[email protected]> (http://brudil.com)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/theprate/react-iframe-resizer.git"
},
"devDependencies": {
"eslint": "^3.4.0",
"eslint-config-airbnb": "^10.0.1",
"eslint-loader": "^1.5.0",
"eslint-plugin-import": "^1.14.0",
"eslint-plugin-jsx-a11y": "^2.2.0",
"eslint-plugin-react": "^6.2.0",
"rollup": "^0.34.10",
"rollup-plugin-buble": "^0.13.0"
},
"peerDependencies": {
"iframe-resizer": "*",
"react": "*"
},
"dependencies": {
"lodash.omit": "^4.5.0",
"object-assign": "^4.1.0"
}
}