-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
47 lines (47 loc) · 1.14 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": "mpd-api",
"version": "1.1.2",
"description": "MPD api module for Node.js",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"repository": "https://github.com/cotko/mpd-api",
"author": "Cotko <[email protected]>",
"license": "UNLICENSED",
"scripts": {
"lint": "standard lib/**/*.js doc/*.js",
"lintfix": "standard lib/**/*.js doc/*.js --fix",
"todos": "grep -irn -B 1 -A 1 --colour todo lib/ || echo none found",
"todo": "grep -irn --colour -E '#\\s+@method' lib/api/spec/ || echo none missing",
"test": "node ./tests/",
"gen-doc": "node ./doc/generatedoc.js --attach",
"gen-typings": "node ./doc/generatetypings.js --indent=4",
"scanformissingcommands": "node ./doc/scanformissingcmds.js"
},
"engines": {
"node": ">=11.0.0"
},
"keywords": [
"mpd",
"mpd2",
"music",
"player",
"daemon",
"client",
"protocol",
"api",
"mpd-api",
"mpdapi"
],
"dependencies": {
"debug": "^4.3.4",
"file-type": "^16.5.3",
"mpd2": "^1.0.5"
},
"devDependencies": {
"standard": "^17.0.0",
"x-ray": "^2.3.4"
},
"standard": {
"ignore": []
}
}