forked from humanmade/react-oembed-container
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.85 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.85 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "react-oembed-container",
"version": "0.3.0",
"description": "React container for locating and injecting oembed scripts in string content.",
"main": "dist/index.js",
"scripts": {
"test": "jest",
"lint": "eslint .",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"build": "babel src -d dist",
"prerelease": "npm run lint && npm run test",
"release": "npm run build && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/humanmade/react-oembed-container.git"
},
"keywords": [
"React",
"oEmbed"
],
"contributors": [
"K. Adam White",
"Human Made"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/humanmade/react-oembed-container/issues"
},
"homepage": "https://github.com/humanmade/react-oembed-container#readme",
"jest": {
"setupTestFrameworkScriptFile": "<rootDir>/test/setup.js"
},
"peerDependencies": {
"react": "^16.2.0",
"react-dom": "^16.2.0"
},
"dependencies": {
"prop-types": "^15.6.0"
},
"devDependencies": {
"@storybook/addon-actions": "^3.3.13",
"@storybook/addon-links": "^3.3.13",
"@storybook/addons": "^3.3.13",
"@storybook/react": "^3.3.13",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-jest": "^22.2.2",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-preset-env": "^1.6.1",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^4.17.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jest": "^21.12.1",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.6.1",
"jest": "^22.3.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"regenerator-runtime": "^0.11.1"
}
}