-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
56 lines (56 loc) · 1.51 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
{
"name": "react-video-looper",
"version": "1.0.18",
"description": "A react component that provides non-destructive inner looping of a video source",
"main": "lib/index.js",
"module": "es/index.js",
"files": [
"css",
"es",
"lib",
"umd"
],
"scripts": {
"build": "export SET NODE_OPTIONS=--openssl-legacy-provider && nwb build-react-component",
"clean": "nwb clean-module && nwb clean-demo",
"prepublishOnly": "npm run build",
"start": "export SET NODE_OPTIONS=--openssl-legacy-provider && nwb serve-react-demo",
"test": "jest",
"test:watch": "jest --watch --no-cache",
"deploy": "gh-pages -d demo/dist"
},
"dependencies": {
"styled-components": "^4.4.1"
},
"peerDependencies": {
"react": "16.x"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/preset-env": "^7.9.5",
"@babel/preset-react": "^7.9.4",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.5.0",
"babel-jest": "^24.9.0",
"babel-polyfill": "^6.26.0",
"gh-pages": "^5.0.0",
"jest": "^24.9.0",
"nwb": "^0.24.5",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-use-form-data": "^1.0.9"
},
"author": "Lewis Hunt",
"homepage": "https://github.com/lewhunt/react-video-looper#readme",
"license": "MIT",
"repository": "https://github.com/lewhunt/react-video-looper.git",
"keywords": [
"web",
"front-end",
"react",
"video",
"loop",
"fullscreen",
"player"
]
}