-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.46 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
55
{
"name": "walkman-go",
"version": "0.0.8",
"description": "Sync online playlists to Sony Walkman",
"main": "dist/index.js",
"scripts": {
"dev": "babel-node src",
"build": "babel src -d dist",
"start": "node dist",
"prepublish": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Jun Gu <[email protected]>",
"license": "Apache-2.0",
"bin": {
"walkman-go": "./bin/walkman-go-cli.js"
},
"repository": {
"type": "git",
"url": "https://github.com/2dxgujun/WalkmanGo.git"
},
"dependencies": {
"bitrate": "^1.0.4",
"bluebird": "^3.5.1",
"cli-truncate": "^1.1.0",
"commander": "^2.15.1",
"cron": "^1.3.0",
"drivelist": "^6.1.8",
"fs-extra": "^6.0.0",
"ini": "^1.3.5",
"inquirer": "^5.2.0",
"lodash": "^4.17.10",
"log4js": "^2.5.3",
"mp3-duration": "^1.1.0",
"node-fetch": "^2.1.2",
"node-flac": "github:2dxgujun/node-flac#v0.0.3",
"node-id3": "github:2dxgujun/node-id3",
"ora": "^2.1.0",
"progress-stream": "^2.0.0",
"promise-queue": "^2.2.5",
"sanitize-filename": "^1.6.1",
"sequelize": "^4.37.10",
"sharp": "^0.20.1",
"sqlite3": "^4.0.0",
"stream-meter": "^1.0.4",
"string-to-stream": "^1.1.1",
"untildify": "^3.0.2",
"usb-detection": "^2.1.0",
"wide-align": "^1.1.3"
},
"devDependencies": {
"babel-preset-env": "^1.6.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0"
}
}