forked from thangngoc89/react-howler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.45 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
{
"name": "react-howler",
"version": "3.1.0",
"description": "A React.js wrapper for howler.js (audio player)",
"main": "lib/index.js",
"scripts": {
"prebabelify": "rimraf lib",
"babelify": "babel src -d lib",
"example:react": "npm run babelify && cd examples/react && npm install && npm run start",
"example:react:build": "npm run babelify && cd examples/react && npm install && npm run build",
"deploy": "babel-node bin/deploy-gh-pages",
"prepublish": "npm run lint && npm run babelify",
"lint": "standard",
"test": "echo \"Error: no test specified\""
},
"files": [
"lib/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/thangngoc89/react-howler.git"
},
"keywords": [
"react-component",
"react.js",
"redux",
"audio",
"player",
"howler",
"howler.js"
],
"author": "Khoa Nguyen <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/thangngoc89/react-howler/issues"
},
"homepage": "https://github.com/thangngoc89/react-howler#readme",
"dependencies": {
"howler": "2.0.0"
},
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0-0"
},
"devDependencies": {
"babel-cli": "^6.4.0",
"babel-core": "^6.4.0",
"babel-preset-es2015": "^6.3.13",
"babel-preset-stage-2": "^6.3.13",
"gh-pages": "^0.9.0",
"react": "^0.14.7",
"react-dom": "^0.14.7",
"rimraf": "^2.5.1",
"standard": "^5.4.1"
}
}