-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
39 lines (39 loc) · 920 Bytes
/
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
{
"name": "icecast-monitor",
"version": "1.0.2",
"description": "Icecast realtime statistics processor with handy nodejs interface.",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "mocha",
"coverage": "istanbul cover _mocha -- -R spec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alvassin/nodejs-icecast-monitor.git"
},
"author": "Alexander Vasin <[email protected]>",
"license": "MIT",
"keywords": [
"icecast",
"radio",
"listener",
"monitoring",
"stats",
"realtime"
],
"bugs": {
"url": "https://github.com/alvassin/nodejs-icecast-monitor/issues"
},
"homepage": "https://github.com/alvassin/nodejs-icecast-monitor#readme",
"devDependencies": {
"codeclimate-test-reporter": "^0.1.1",
"istanbul": "^0.3.22",
"mocha": "^2.2.5"
},
"dependencies": {
"sax": "^1.1.1"
}
}