-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
70 lines (70 loc) · 2.15 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
{
"name": "react-player-controls",
"version": "2.0.0-beta.1",
"description": "UI components for media players",
"main": "dist/index.js",
"files": [
"dist",
"resources",
"src"
],
"scripts": {
"prebuild": "rimraf dist",
"build": "babel --out-dir dist src",
"dev": "npm run build -- --watch",
"lint": "eslint src tests",
"test": "mocha --require @babel/register --require jsdom-global/register --require tests/helpers/configure-enzyme.js tests/*.js",
"test:w": "npm test -- -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alexanderwallin/react-player-controls.git"
},
"author": "Reactify <[email protected]> (http://reactifymusic.com)",
"contributors": [
"Alexander Wallin <[email protected]> (http://alexanderwallin.com)"
],
"license": "ISC",
"bugs": {
"url": "https://github.com/alexanderwallin/react-player-controls/issues"
},
"homepage": "http://alexanderwallin.github.io/react-player-controls/",
"devDependencies": {
"@babel/cli": "^7.11.6",
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-decorators": "^7.2.3",
"@babel/preset-env": "^7.2.3",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
"babel-eslint": "^10.0.1",
"babel-plugin-transform-class-properties": "^6.11.5",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"chai": "^4.2.0",
"chai-enzyme": "^1.0.0-beta.1",
"enzyme": "^3.8.0",
"enzyme-adapter-react-16": "^1.7.1",
"eslint": "^7.10.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.21.3",
"eslint-plugin-standard": "^4.0.1",
"jsdom-global": "^3.0.2",
"mocha": "^5.2.0",
"mocha-jsdom": "^2.0.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"rimraf": "^2.6.3",
"sinon": "^7.2.2"
},
"peerDependencies": {
"react": "^16.8.0"
},
"dependencies": {
"autobind-decorator": "^2.4.0",
"prop-types": "^15.6.2",
"react-use-gesture": "^7.0.16"
}
}