-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
53 lines (53 loc) · 1.47 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
{
"name": "react-spotify-player",
"version": "1.0.4",
"description": "Spotify player widget in React",
"main": "dist/SpotifyPlayer.js",
"files": [
"dist",
"src"
],
"scripts": {
"build": "babel src --out-dir dist",
"build:examples": "browserify examples/examples.js -t babelify -o examples/examples.dist.js",
"dev": "npm run build -- --watch",
"dev:examples": "watchify examples/examples.js -t babelify -o examples/examples.dist.js",
"lint": "eslint ./src/*.jsx",
"release": "paco release"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alexanderwallin/react-spotify-player.git"
},
"keywords": [
"react-component",
"spotify",
"widget",
"player",
"react",
"component"
],
"author": "Alexander Wallin <[email protected]> (http://alexanderwallin.com)",
"license": "ISC",
"bugs": {
"url": "https://github.com/alexanderwallin/react-spotify-player/issues"
},
"homepage": "https://github.com/alexanderwallin/react-spotify-player#readme",
"peerDependencies": {
"prop-types": "^15.5.10"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babelify": "^7.2.0",
"eslint": "^1.10.3",
"eslint-config-airbnb": "^2.1.1",
"eslint-plugin-react": "^3.12.0",
"paco": "^0.4.0",
"prop-types": "^15.6.0",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"watchify": "^3.6.1"
}
}