-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
38 lines (38 loc) · 906 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
{
"name": "nodeplayer",
"version": "0.2.0",
"description": "simple, modular music player written in node.js",
"main": "index.js",
"preferGlobal": true,
"scripts": {
"start": "./bin/nodeplayer",
"test": "NODE_ENV=test ./node_modules/mocha/bin/mocha",
"coverage": "NODE_ENV=test istanbul cover _mocha -- -R spec"
},
"repository": {
"type": "git",
"url": "https://github.com/FruitieX/nodeplayer"
},
"author": "FruitieX",
"bin": {
"nodeplayer": "./bin/nodeplayer"
},
"license": "MIT",
"dependencies": {
"async": "^0.9.0",
"mkdirp": "^0.5.0",
"npm": "^2.7.1",
"underscore": "^1.7.0",
"winston": "^0.9.0",
"yargs": "^3.6.0"
},
"devDependencies": {
"chai": "*",
"istanbul": "*",
"jscs": "^1.11.3",
"mocha": "*",
"mocha-jscs": "^1.0.2",
"mocha-jshint": "^1.0.0",
"nodeplayer-backend-dummy": "^0.1.9"
}
}