-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
58 lines (58 loc) · 1.79 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
{
"name": "simple-react-video-thumbnail",
"version": "0.0.7",
"description": "Provides video tag and thumbnail at arbitrary point in video where these features are supported",
"author": "Ben Hart",
"license": "MIT",
"repository": "https://github.com/FinnovateIo/React-simple-video",
"main": "./dist/VideoPlayer/VideoPlayer.js",
"unpkg": "./index.js",
"keywords": [
"react-component",
"video",
"thumbnail",
"react"
],
"scripts": {
"prepublish": "babel --plugins transform-es2015-modules-umd src --ignore __tests__ --out-dir ./dist",
"lint": "eslint ./src",
"lintfix": "eslint ./src --fix",
"testonly": "mocha $npm_package_options_mocha",
"test": "npm run lint && npm run testonly",
"test-watch": "npm run testonly -- --watch --watch-extensions js",
"start": "start-storybook -p 5000",
"build-storybook": "build-storybook"
},
"devDependencies": {
"@storybook/react": "^5.2.1",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^6.0.2",
"babel-plugin-transform-es2015-modules-umd": "^6.6.5",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-2": "^6.5.0",
"babel-runtime": "6.6.1",
"chai": "^3.5.0",
"enzyme": "^2.9.1",
"eslint": "^2.7.0",
"eslint-plugin-babel": "^3.1.0",
"eslint-plugin-react": "^4.2.3",
"jsdom": "^8.1.0",
"mocha": "^6.2.0",
"nodemon": "^1.18.9",
"react": "^15.6.2",
"react-addons-test-utils": "^15.6.2",
"react-dom": "^15.6.2",
"sinon": "^1.17.3"
},
"peerDependencies": {
"react": "~0.14.8 || ^15.0.0 || ^16.0.0",
"react-dom": "~0.14.8 || ^15.0.0 || ^16.0.0",
"prop-types": "^15.5.8 || 16.0.0"
},
"dependencies": {
"react-video-thumbnail": "^0.1.3"
}
}