forked from thangngoc89/react-howler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.73 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
{
"name": "react-howler",
"version": "3.7.4",
"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 && yarn install && NODE_PATH=../../lib npm start",
"example:react:build": "npm run lint && npm run babelify && cd examples/react && yarn install && NODE_PATH=../../lib npm run build",
"predeploy": "npm run example:react:build",
"deploy": "babel-node bin/deploy-gh-pages",
"prepublish": "npm run lint && npm run babelify",
"lint": "standard",
"test": "echo \"Error: no test specified\"",
"release": "npmpub"
},
"files": [
"lib/*"
],
"standard": {
"ignore": [
"examples/react/build/"
]
},
"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.1.1",
"prop-types": "^15.5.6"
},
"devDependencies": {
"babel-cli": "^6.16.0",
"babel-core": "^6.17.0",
"babel-preset-es2015": "^6.16.0",
"babel-preset-stage-2": "^6.17.0",
"eslint-plugin-react": "^7.5.1",
"gh-pages": "^1.1.0",
"react": "^15.0.0 || ^16.0.0",
"react-dom": "^15.0.0 || ^16.0.0",
"rimraf": "^2.5.1",
"standard": "^10.0.3"
},
"greenkeeper": {
"ignore": [
"standard"
]
}
}