-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 975 Bytes
/
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
{
"name": "dj-lazy",
"version": "0.0.3",
"description": "Create Spotify playlists based on Allmusic.com new releases",
"bin": {
"dj-lazy": "./lib/index.js"
},
"main": "lib/index.js",
"scripts": {
"watch": "babel src --watch --out-dir lib --source-maps"
},
"repository": {
"type": "git",
"url": "https://github.com/jemise111/dj-lazy"
},
"author": "Jesse Sessler <[email protected]>",
"license": "MIT",
"keyword": [
"music",
"allmusic",
"lazy",
"dj",
"playlist",
"spotify"
],
"devDependencies": {
"babel-cli": "^6.5.1",
"babel-core": "^6.5.2",
"babel-plugin-transform-async-to-generator": "^6.5.0",
"babel-polyfill": "^6.5.0",
"babel-preset-es2015": "^6.5.0",
"babel-preset-stage-0": "^6.5.0"
},
"dependencies": {
"commander": "^2.9.0",
"express": "^4.13.4",
"open": "0.0.5",
"q": "^1.4.1",
"spotify-web-api-node": "^2.2.0",
"x-ray": "^2.0.3"
}
}