-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
69 lines (69 loc) · 1.91 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "react-dailymotion",
"version": "0.4.1",
"description": "Dailymotion player component for React.",
"main": "dist/react-dailymotion.js",
"module": "dist/react-dailymotion.mjs",
"scripts": {
"prepare": "npm run build",
"build": "ROLLUP=1 rollup -c",
"lint": "eslint --cache .",
"tests-only": "TESTS=1 mocha --require @babel/register",
"test": "npm run lint && npm run tests-only",
"docs": "prop-types-table src/index.js | md-insert README.md --header Props -i",
"example": "npm run -w example build && npm run -w example start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/u-wave/react-dailymotion.git"
},
"keywords": [
"dailymotion",
"react",
"player",
"react-component",
"video"
],
"author": "Renée Kooi <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/u-wave/react-dailymotion/issues"
},
"homepage": "https://github.com/u-wave/react-dailymotion#readme",
"dependencies": {
"load-script2": "^1.0.1",
"prop-types": "^15.5.10"
},
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0 || ^16.0.0 || ^17.0.0"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
"@rollup/plugin-babel": "^5.0.3",
"eslint": "^8.2.0",
"eslint-config-airbnb": "^19.0.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.27.0",
"eslint-plugin-react-hooks": "^4.3.0",
"expect": "^1.20.2",
"md-insert": "^1.0.1",
"min-react-env": "^1.0.0",
"mocha": "^8.0.1",
"prop-types-table": "^1.0.0",
"proxyquire": "^2.0.1",
"react": "^17.0.0",
"react-dom": "^17.0.0",
"react-test-renderer": "^17.0.0",
"rollup": "^2.0.2"
},
"workspaces": {
"packages": [
".",
"./example"
]
}
}