-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.24 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
48
49
50
51
{
"name": "queueget",
"version": "0.5.21",
"description": "Download links from a queue file",
"bin": {
"queueget": "./bin/cli.js",
"queuegetd": "./bin/daemon.js"
},
"main": "./src/index.js",
"files": [
"bin",
"src"
],
"scripts": {
"test": "jest",
"lint": "npm run eslint && npm run prettier",
"lint:ci": "npm run eslint:ci && npm run prettier:ci",
"eslint": "eslint --fix .",
"eslint:ci": "eslint .",
"prettier": "prettier --write --loglevel error .",
"prettier:ci": "prettier --check .",
"prepublishOnly": "npm test && npm run lint:ci",
"upgrade-lock": "npx shx rm -rf package-lock.json node_modules && npm i --package-lock"
},
"engines": {
"node": ">=10.0.0",
"npm": ">=6.0.0"
},
"devDependencies": {
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-jest": "^27.2.2",
"jest": "^29.6.0",
"prettier": "^2.8.8"
},
"keywords": [
"cli",
"request",
"download",
"queue"
],
"author": "Richard Lindner <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/rlindner81/queueget.git"
},
"bugs": {
"url": "https://github.com/rlindner81/queueget/issues"
}
}