forked from justinmc/react-audio-player
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.39 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.39 KB
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
{
"name": "react-audio-player",
"version": "0.5.1",
"description": "A simple React wrapper for the audio tag",
"main": "dist/bundle.js",
"scripts": {
"test": "karma start",
"build": "webpack -p",
"watch": "webpack -p --watch",
"prepublish": "npm run build",
"example": "webpack-dev-server --content-base example/ --config example/webpack.config.js --progress --colors"
},
"repository": {
"type": "git",
"url": "https://github.com/justinmc/react-audio-player"
},
"keywords": [
"react",
"audio",
"player",
"wrapper",
"simple"
],
"author": "Justin McCandless",
"license": "MIT",
"peerDependencies": {
"react": "15.x",
"react-dom": "15.x",
"prop-types": "^15.5.8"
},
"devDependencies": {
"babel-core": "^6.7.2",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"eslint": "^2.4.0",
"eslint-config-airbnb": "^6.1.0",
"eslint-loader": "^1.6.1",
"eslint-plugin-react": "^4.2.1",
"file-loader": "^0.8.5",
"jasmine": "^2.4.1",
"karma": "^0.13.22",
"karma-chrome-launcher": "^0.2.2",
"karma-jasmine": "^0.3.7",
"karma-webpack": "^1.7.0",
"react": "^15.0.2",
"react-addons-test-utils": "^15.0.2",
"react-dom": "^15.0.2",
"react-hot-loader": "^3.0.0-beta.6",
"webpack": "^1.12.14",
"webpack-dev-server": "^1.16.2"
}
}