forked from micnews/react-jw-player
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.04 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-jw-player",
"version": "1.19.1",
"description": "A React component for launching JW Player instances on the client.",
"main": "dist/react-jw-player.js",
"scripts": {
"build": "babel src --out-dir dist",
"clean": "rimraf dist",
"lint": "eslint .",
"prepublish": "npm run lint && npm run test && npm run clean && npm run build",
"test": "npm run lint && npm run test:unit && npm run test:browser",
"test:unit": "babel-tape-runner ./test/*.test.js* | faucet",
"test:browser": "babel-tape-runner ./test/*.browser-test.js* | faucet",
"watch": "babel src --out-dir dist --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/micnews/react-jw-player.git"
},
"keywords": [
"react",
"jwplayer",
"jw-player",
"video",
"autoplay",
"events"
],
"author": "Mic Network, Inc.",
"license": "MIT",
"bugs": {
"url": "https://github.com/micnews/react-jw-player/issues"
},
"homepage": "https://github.com/micnews/react-jw-player#readme",
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-eslint": "^7.2.3",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-tape-runner": "^2.0.1",
"enzyme": "^2.7.0",
"eslint": "^3.15.0",
"eslint-config-airbnb": "^13.0.0",
"eslint-config-mic": "^1.0.0",
"eslint-plugin-babel": "^4.1.2",
"eslint-plugin-flowtype": "^2.39.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.10.3",
"faucet": "0.0.1",
"jsdom": "^9.9.1",
"jsdom-global": "^2.1.1",
"miclint": "^4.1.0",
"prop-types": "^15.5.10",
"react": "^15.4.1",
"react-addons-test-utils": "^15.4.1",
"react-dom": "^15.4.2",
"react-test-renderer": "^15.4.2",
"rimraf": "^2.6.3",
"tape": "^4.6.3"
},
"peerDependencies": {
"prop-types": "^15.5.10",
"react": "^15.4.1 || ^16.0.0 || ^17.0.0"
},
"dependencies": {
"react-fast-compare": "^2.0.1"
}
}