-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.15 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.15 KB
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
{
"name": "react-responsive-embed",
"version": "2.0.0",
"description": "Embed iframes responsively",
"main": "lib/index.js",
"scripts": {
"test": "ava",
"prepublish": "npm run build",
"build": "babel src -d lib",
"docs": "static-react docs/components/Page.js > docs/index.html"
},
"author": "oilzilla <oli@tableflip.io>",
"license": "MIT",
"devDependencies": {
"ava": "^0.17.0",
"babel-cli": "^6.22.2",
"babel-plugin-transform-object-rest-spread": "^6.22.0",
"babel-preset-env": "^1.1.8",
"react-addons-test-utils": "^15.0",
"react-dom": "^15.0",
"static-react": "^3.2.0"
},
"peerDependencies": {
"react": "^15.0"
},
"engines": {
"node": ">=6.0"
},
"ava": {
"require": ["babel-register"],
"babel": "inherit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tableflip/react-responsive-embed.git"
},
"keywords": [
"react",
"responsive",
"iframe",
"aspect",
"ratio"
],
"bugs": {
"url": "https://github.com/tableflip/react-responsive-embed/issues"
},
"homepage": "https://github.com/tableflip/react-responsive-embed#readme"
}