forked from interrupter/not-node-mpd
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 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
{
"name": "tm-node-mpd",
"version": "1.0.0",
"description": "Music player daemon client library(forked from node-mpd).",
"type": "module",
"main": "index.js",
"scripts": {
"test": "jest",
"test:coverage": "jest --coverage",
"lint": "./node_modules/.bin/eslint ./src/**/**.js",
"lint:fix": "./node_modules/.bin/eslint --fix ./src/**/**.js",
"win:lint": ".\\node_modules\\.bin\\eslint .\\src\\**\\**.js",
"win:lint:fix": ".\\node_modules\\.bin\\eslint --fix .\\src\\**\\**.js"
},
"engines": {
"node": ">=18"
},
"jest": {
"transform": {
"^.+\\.(js|jsx)$": "babel-jest"
},
"verbose": true,
"coverageDirectory": "./coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/RomanBurunkov/tm-node-mpd"
},
"keywords": [
"mpd",
"music",
"player",
"daemon"
],
"devDependencies": {
"@babel/preset-env": "^7.26.0",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.15.0",
"babel-jest": "^29.7.0",
"eslint": "^9.15.0",
"globals": "^15.12.0",
"jest": "^29.7.0"
},
"author": "Roman Burunkov <[email protected]>",
"license": "MIT"
}