-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.06 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.06 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
41
42
43
{
"name": "spotify-web-utils",
"version": "0.4.0",
"description": "Utils on top of the spotify web api with reference express app.",
"scripts": {
"babel-node": "babel-node --stage 0",
"start": "nodemon --exec npm run babel-node -- server.js",
"prepublish": "babel lib --out-dir build --stage 0"
},
"main": "index.js",
"author": "Dillon Shook",
"dependencies": {
"babel": "^5.5.8",
"babel-core": "^5.5.8",
"bluebird": "^2.9.30",
"cheerio": "latest",
"cookie-parser": "^1.3.5",
"dotenv": "^1.1.0",
"express": "latest",
"lodash": "^3.9.3",
"querystring": "^0.2.0",
"request": "latest",
"spotify-web-api-node": "^2.0.2"
},
"devDependencies": {
"nodemon": "^1.3.7"
},
"repository": {
"type": "git",
"url": "https://github.com/dshook/spotify-web-utils.git"
},
"keywords": [
"spotify",
"utils",
"playlist",
"songs"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/dshook/spotify-web-utils/issues"
},
"homepage": "https://github.com/dshook/spotify-web-utils"
}