forked from weboverhauls/accessible-html5-video-player
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.63 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
{
"company": "PayPal",
"name": "accessible-html5-video-player",
"version": "1.0.6",
"description": "A lightweight HTML5 video player which includes support for captions and screen reader accessibility.",
"repository": {
"type": "git",
"url": "https://github.com/paypal/accessible-html5-video-player"
},
"main": "js/px-video.js",
"directories": {
"test": "test"
},
"dependencies": {
"prop-types": "^15.6.0",
"react": "^15.5.4",
"react-dom": "^15.5.4"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-preset-env": "^1.6.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"eslint": "^4.9.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^2.6.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-prettier": "^2.3.1",
"eslint-plugin-react": "^7.4.0",
"prop-types": "^15.5.10",
"serve": ">=10.1.2"
},
"keywords": [
"html5",
"accessible",
"video",
"player",
"paypal",
"javascript"
],
"author": "weboverhauls@gmail.com",
"licenses": [
{
"type": "BSD",
"url": "https://github.com/paypal/accessible-html5-video-player/blob/master/LICENSE.md"
}
],
"readmeFilename": "README.md",
"bugs": {
"url": "https://github.com/paypal/accessible-html5-video-player/issues"
},
"homepage": "https://github.com/paypal/accessible-html5-video-player#readme",
"scripts": {
"demo": "serve .",
"test": "echo \"Error: no test specified\" && exit 1",
"react": "babel src/PXVideo.jsx --out-file js/pxvideo.react.js --presets=env,react"
}
}