-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
51 lines (51 loc) · 1.32 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
{
"name": "stream-title",
"version": "1.0.7",
"description": "Retrieve song title from shoutcast and icecast server",
"main": "index.js",
"keywords": [
"cover",
"shoutcast",
"icecast",
"metadata",
"song",
"itunes",
"search",
"album",
"artist",
"title",
"centova"
],
"directories": {
"test": "test"
},
"scripts": {
"version:major": "npm version major",
"version:minor": "npm version minor",
"version:patch": "npm version patch",
"postversion": "npm publish && git push && git push --tags",
"test": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fabioricali/StreamTitle.git"
},
"bugs": {
"url": "https://github.com/fabioricali/StreamTitle/issues"
},
"homepage": "https://github.com/fabioricali/StreamTitle#readme",
"author": "Fabio Ricali",
"license": "MIT",
"devDependencies": {
"coveralls": "^2.13.1",
"istanbul": "^0.4.5",
"mocha": "^3.4.2",
"mocha-lcov-reporter": "^1.3.0",
"static-server": "^3.0.0"
},
"dependencies": {
"request": "^2.81.0",
"request-promise": "^4.2.1",
"super-trailing-slash": "^1.0.1"
}
}