-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.27 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
54
{
"name": "spotifork-node",
"version": "1.0.3",
"description": "Fork Spotify playlists!",
"main": "build/cli.js",
"bin": {
"spotifork": "build/cli.js"
},
"scripts": {
"test": "mocha build/test/test.js",
"build": "tsc",
"clean": "rm -rf build",
"prepublishOnly": "npm run clean && npm run build"
},
"keywords": [
"spotify",
"playlist",
"forker",
"music",
"spotify-api"
],
"author": "Alan Wernick",
"license": "ISC",
"dependencies": {
"commander": "^2.10.0",
"express": "^4.15.3",
"lodash.clone": "^4.5.0",
"opn": "^5.1.0",
"spotify-web-api-node": "^2.4.0"
},
"devDependencies": {
"@types/chai": "^4.0.1",
"@types/chai-as-promised": "0.0.31",
"@types/commander": "^2.9.1",
"@types/express": "^4.0.36",
"@types/mocha": "^2.2.41",
"@types/node": "^7.0.28",
"chai": "^4.0.2",
"chai-as-promised": "^7.1.1",
"dotenv": "^4.0.0",
"gulp": "^3.9.1",
"gulp-typescript": "^3.1.7",
"mocha": "^3.4.2",
"typescript": "^2.3.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/awernick/spotifork.git"
},
"bugs": {
"url": "https://github.com/awernick/spotifork/issues"
},
"homepage": "https://github.com/awernick/spotifork#readme"
}