-
Notifications
You must be signed in to change notification settings - Fork 80
/
package.json
50 lines (50 loc) · 1.38 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
{
"name": "react-sound",
"version": "1.2.0",
"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"
},
"repository": {
"type": "git",
"url": "https://github.com/leoasis/react-sound.git"
},
"keywords": [
"react",
"react-component",
"sound",
"soundmanager2"
],
"author": "Leonardo Andres Garcia Crespo <[email protected]>",
"license": "ISC",
"homepage": "https://github.com/leoasis/react-sound",
"dependencies": {
"prop-types": "^15.5.7",
"soundmanager2": "^2.97.20170602"
},
"peerDependencies": {
"react": "^15.3.0 || ^16.0.0-0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.1.2",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"eslint": "^4.14.0",
"eslint-plugin-react": "^7.5.1",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-hot-loader": "^3.1.3",
"rimraf": "^2.6.2",
"webpack": "^3.10.0",
"webpack-dev-server": "^2.9.7"
}
}