-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.26 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.26 KB
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
50
51
52
{
"name": "queueget",
"version": "0.5.22",
"description": "Download links from a queue file",
"bin": {
"queueget": "./bin/cli.js",
"queuegetd": "./bin/daemon.js"
},
"files": [
"bin",
"src"
],
"scripts": {
"test": "jest",
"lint:fix": "npm run eslint:fix && npm run prettier:fix",
"lint": "npm run eslint && npm run prettier",
"eslint:fix": "eslint --fix .",
"eslint": "eslint .",
"prettier:fix": "prettier --write --log-level error .",
"prettier": "prettier --check .",
"prepublishOnly": "npm test && npm run lint:ci",
"upgrade-lock": "rm -rf package-lock.json node_modules && npm i",
"update-lock": "npm up --save"
},
"engines": {
"node": ">=10.0.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"eslint": "^10.0.3",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jest": "^29.15.0",
"globals": "^17.4.0",
"jest": "^30.3.0",
"prettier": "^3.8.1"
},
"keywords": [
"cli",
"request",
"download",
"queue"
],
"author": "Richard Lindner <rlindner81@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/rlindner81/queueget.git"
},
"bugs": {
"url": "https://github.com/rlindner81/queueget/issues"
}
}