-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 901 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": "dsdl",
"version": "3.1.1-RC1",
"description": "DiskStation DownLoader - gets files from Synology DiskStation Manager",
"repository": {
"type": "git",
"url": "git://github.com/schnatterer/dsdl.git"
},
"main": "src/cli/dsdl.js",
"bin": "src/cli/dsdl.js",
"scripts": {
"package": "node createBinaries.js",
"test": "jest"
},
"files": [ "src/**" ],
"author": "Johannes Schnatterer",
"license": "MIT",
"dependencies": {
"commander": "^9.5.0",
"node-fetch": "^2.6.7",
"promisepipe": "^3.0.0",
"read": "^1.0.7",
"m3u" : "^0.0.2"
},
"devDependencies": {
"jest": "^29.3",
"jest-sonar-reporter": "^2.0.0",
"nexe": "^4.0.0-rc.2",
"nock": "^13.2.9",
"memfs": "3.4.13"
},
"jest": {
"collectCoverage": true,
"coverageReporters": [
"lcov"
],
"testResultsProcessor": "jest-sonar-reporter"
}
}