-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
48 lines (48 loc) · 1.31 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
{
"name": "react-aplayer",
"version": "1.0.0",
"main": "dist/react-aplayer.min.js",
"author": "Sabrina Luo <[email protected]>",
"homepage": "http://sabrinaluo.github.io/react-aplayer",
"description": "A React wrapper component of APlayer",
"keywords": [
"aplayer",
"player",
"music",
"audio",
"react-aplayer"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/sabrinaluo/react-aplayer.git"
},
"bugs": {
"url": "https://github.com/sabrinaluo/react-aplayer/issues"
},
"dependencies": {
"aplayer": "^1.10.0",
"prop-types": "^15.6.1",
"react": "^16.2.0"
},
"devDependencies": {
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-prettier": "^2.6.0",
"gh-pages": "^1.1.0",
"prettier": "^1.11.1",
"react-dom": "^16.2.0",
"react-scripts": "^1.1.1"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build && webpack",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"deploy": "react-scripts build && gh-pages -d build",
"prettier": "prettier --write \"src/**/*.{js,jsx,css,json}\" \"*.js\""
}
}