-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpackage.json
62 lines (62 loc) · 1.75 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
{
"name": "react-responsive-audio-player",
"version": "1.5.0",
"description": "A simple, clean, and responsive visual wrapper for the HTML audio tag, built with React.",
"main": "dist/audioplayer.js",
"scripts": {
"build:clean": "rimraf dist",
"build:webpack": "BUILD_MODE=all webpack --progress",
"build": "npm run build:clean && npm run build:webpack",
"dev": "BUILD_MODE=unminimized webpack-serve --open --open-path example.html",
"dev:network": "BUILD_MODE=unminimized webpack-serve --host 0.0.0.0 --open --open-path example.html",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/benwiley4000/react-responsive-audio-player.git"
},
"engines": {
"node": "*"
},
"keywords": [
"audio",
"html5",
"react",
"reactjs",
"responsive",
"music",
"player"
],
"author": {
"name": "Ben Wiley",
"email": "[email protected]",
"url": "http://benwiley.org/"
},
"license": "MIT",
"peerDependencies": {
"react": "0.14.x || 15.x.x || 16.x.x"
},
"devDependencies": {
"array-find-index": "^1.0.2",
"autoprefixer": "^7.1.1",
"babel-core": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-preset-es2015": "^6.0.0",
"babel-preset-react": "^6.0.0",
"classnames": "^2.2.5",
"compression-webpack-plugin": "^1.1.11",
"css-loader": "^0.28.4",
"mini-css-extract-plugin": "^0.2.0",
"node-sass": "^4.9.3",
"optimize-css-assets-webpack-plugin": "^3.2.0",
"postcss-loader": "^2.0.5",
"rimraf": "^2.5.4",
"sass-loader": "^6.0.5",
"webpack": "^4.17.1",
"webpack-cli": "^3.1.0",
"webpack-serve": "^2.0.2"
},
"dependencies": {
"prop-types": "^15.5.10"
}
}