-
Notifications
You must be signed in to change notification settings - Fork 64
/
package.json
71 lines (71 loc) · 2.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
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
{
"name": "@u-wave/react-vimeo",
"version": "0.9.11",
"description": "Vimeo player component for React.",
"main": "dist/react-vimeo.js",
"module": "dist/react-vimeo.es.js",
"types": "index.d.ts",
"scripts": {
"prepare": "npm run build",
"build": "rollup -c",
"lint": "eslint --cache .",
"test": "npm run lint && npm run tests-only && npm run tsd",
"tests-only": "cross-env BABEL_ENV=test mocha --require @babel/register test/*.js",
"tsd": "tsd",
"docs": "prop-types-table src/index.js | md-insert README.md --header Props -i",
"example": "npm run --prefix example build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/u-wave/react-vimeo.git"
},
"keywords": [
"vimeo",
"react",
"player",
"react-component",
"video"
],
"author": "Renée Kooi <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/u-wave/react-vimeo/issues"
},
"homepage": "https://github.com/u-wave/react-vimeo#readme",
"dependencies": {
"@types/react": "^17.0.0 || ^18.0.0",
"@types/vimeo__player": "^2.10.0",
"@vimeo/player": "^2.16.4",
"prop-types": "^15.7.2"
},
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.10",
"@babel/preset-react": "^7.12.10",
"@babel/register": "^7.12.10",
"@rollup/plugin-babel": "^6.0.0",
"@u-wave/react-vimeo-example": "file:example",
"babel-plugin-dynamic-import-node": "^2.3.3",
"cross-env": "^7.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": "^2.0.0",
"min-react-env": "^2.0.0",
"mocha": "^10.0.0",
"prop-types-table": "^1.0.0",
"proxyquire": "^2.1.3",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"rollup": "^3.1.0",
"tsd": "^0.31.0"
},
"sideEffects": false
}