-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.22 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.22 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
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "react-oembed-container",
"version": "1.0.1",
"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",
"prebuild-storybook": "rm -rf docs/storybook",
"build-storybook": "build-storybook -o docs/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": {
"setupFilesAfterEnv": [
"<rootDir>/test/setup.js"
],
"transform": {
"^.+\\.jsx?$": "babel-jest"
},
"testURL": "http://localhost/"
},
"browserslist": "> 0.25%, not dead",
"peerDependencies": {
"react": "^16.2.0 || ^17.0.0",
"react-dom": "^16.2.0 || ^17.0.0"
},
"dependencies": {
"prop-types": "^15.6.0"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-object-rest-spread": "^7.9.0",
"@babel/plugin-transform-react-jsx": "^7.9.4",
"@storybook/addon-actions": "^3.3.13",
"@storybook/addon-links": "^3.3.13",
"@storybook/addons": "^3.3.13",
"@storybook/react": "^5.3.18",
"babel-eslint": "^10.1.0",
"babel-jest": "^25.2.4",
"babel-loader": "^8.1.0",
"babel-preset-env": "^1.7.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^5.16.0",
"eslint-config-humanmade": "^0.8.0",
"eslint-config-react-app": "^3.0.8",
"eslint-plugin-flowtype": "^3.13.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jest": "^23.8.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.19.0",
"jest": "^25.2.4",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"regenerator-runtime": "^0.11.1"
}
}