forked from leoasis/react-sound
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.13 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.13 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
{
"name": "react-sound",
"version": "0.5.2",
"description": "React Sound component using soundmanager2",
"main": "lib/index.js",
"scripts": {
"start": "cd examples && webpack-dev-server --port 3000 --progress --inline --hot --devtool eval-source-map",
"build": "npm run lint && babel src --out-dir lib",
"clean": "rimraf ./lib",
"lint": "eslint src test",
"prepublish": "npm run clean && npm run build"
},
"keywords": [
"react",
"react-component",
"sound",
"soundmanager2"
],
"author": "Leonardo Andres Garcia Crespo <leoasis@gmail.com>",
"license": "ISC",
"homepage": "https://github.com/leoasis/react-sound",
"dependencies": {
"react": ">=0.13.3 <16.0.0",
"soundmanager2": "^2.97.20150601-a"
},
"devDependencies": {
"babel": "^5.5.6",
"babel-core": "^5.5.6",
"babel-eslint": "^6.0.5",
"babel-loader": "^5.1.4",
"eslint": "^2.13.1",
"eslint-plugin-react": "5.2.2",
"node-libs-browser": "^0.5.2",
"react-dom": ">=0.14.0 <16.0.0",
"react-hot-loader": "^1.2.7",
"rimraf": "^2.4.0",
"webpack": "^1.9.10",
"webpack-dev-server": "^1.9.0"
}
}