-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
49 lines (49 loc) · 1.38 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
{
"name": "even-nicercast",
"version": "1.0.0",
"description": "Icecast/Shoutcast server implemented using NodeJS Streams",
"main": "lib/even-nicercast.js",
"scripts": {
"test": "npm run test:modules && npm run test:coverage",
"test:modules": "mocha --recursive --compilers coffee:iced-coffee-script/register --require iced-coffee-coverage/register-istanbul test/",
"test:coverage": "istanbul report",
"build": "iced --bare --map --runtime node -o lib/ -c src/",
"watch": "iced --watch --bare --map --runtime node -o lib/ -c src/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/livebassmusicrightnow/even-nicercast.git"
},
"keywords": [
"icecast",
"shoutcast",
"streams",
"relay",
"bass",
"music"
],
"author": "doublerebel",
"license": "MIT",
"bugs": {
"url": "https://github.com/livebassmusicrightnow/even-nicercast/issues"
},
"homepage": "https://github.com/livebassmusicrightnow/even-nicercast#readme",
"dependencies": {
"express": "^4.14.0",
"iced-runtime": "^1.0.3",
"icy": "^2.1.0"
},
"peerDependencies": {
"lame": "^1.2.4"
},
"devDependencies": {
"chai": "^3.5.0",
"coveralls": "^2.11.14",
"iced-coffee-coverage": "^1.0.3",
"iced-coffee-script": "^108.0.11",
"istanbul": "^0.4.5",
"lame": "^1.2.4",
"mocha": "^3.1.0",
"sinon": "^1.17.6"
}
}