forked from hansonw/itunesfm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.13 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
{
"name": "itunesfm",
"version": "1.0.5",
"description": "Sync last.fm play counts with your iTunes library.",
"homepage": "https://github.com/hansonw/itunesfm",
"keywords": [
"iTunes",
"last.fm",
"sync"
],
"main": "bin/main.js",
"bin": {
"itunesfm": "./bin/main.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "gulp",
"start": "node bin/main.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hansonw/itunesfm.git"
},
"author": "Hanson Wang",
"license": "ISC",
"devDependencies": {
"babel-cli": "^6.0.0",
"babel-core": "^6.4.0",
"babel-plugin-syntax-flow": "^6.3.13",
"babel-plugin-transform-flow-strip-types": "^6.4.0",
"babel-plugin-transform-runtime": "^6.4.0",
"babel-preset-es2015": "^6.0.0",
"babel-preset-stage-0": "^6.0.0",
"gulp": "^3.9.0",
"gulp-babel": "^6.1.1"
},
"dependencies": {
"babel-runtime": "^6.3.19",
"lastfmapi": "0.0.6",
"levenshtein-edit-distance": "^1.0.0",
"prompt": "^0.2.14",
"xmldoc": "^0.4.0"
},
"optionalDependencies": {
"osa": ""
}
}