-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.76 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.76 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
53
54
55
56
57
58
59
60
61
62
63
64
{
"author": "Vladimir Barbarosh <vladimir.barbarosh@gmail.com>",
"license": "MIT",
"name": "@vbarbarosh/node-helpers",
"version": "3.74.0",
"description": "A set of helpers for JavaScript/Node.js",
"unpkg": "dist/browser.js",
"jsdelivr": "dist/browser.js",
"homepage": "https://vbarbarosh.github.io/node-helpers/",
"bin": {
"watchdog": "src/cli-apps/watchdog.js"
},
"files": [
"dist",
"src"
],
"scripts": {
"build": "rm -rf dist; webpack",
"test": "mocha 'src/**/*.test.js'"
},
"keywords": [
"js",
"node",
"helpers"
],
"repository": {
"type": "git",
"url": "git+https://github.com/vbarbarosh/node-helpers.git"
},
"bugs": {
"url": "https://github.com/vbarbarosh/node-helpers/issues"
},
"peerDependencies": {
"@paralleldrive/cuid2": "^3.0.4",
"@vbarbarosh/type-helpers": "^0.2.0",
"axios": "^1.7.9",
"bluebird": "^3.7.2",
"csv-parse": "^5.6.0",
"form-data": "^4.0.1",
"htmlparser2": "^10.0.0",
"json-stable-stringify": "^1.2.1",
"json-stringify-safe": "^5.0.1",
"mime-types": "^2.1.35",
"sanitize-filename": "^1.6.3",
"split": "^1.0.1"
},
"optionalDependencies": {
"ssh2": "^1.16.0"
},
"devDependencies": {
"@vbarbarosh/tree": "^0.5.0",
"copy-webpack-plugin": "^12.0.2",
"express": "^4.21.2",
"mocha": "^11.0.1",
"redis-v1": "npm:redis@1",
"redis-v2": "npm:redis@2",
"redis-v3": "npm:redis@3",
"redis-v4": "npm:redis@4",
"throttle": "^1.0.3",
"tree-kill": "^1.2.2",
"webpack": "^5.98.0",
"webpack-cli": "^6.0.1"
}
}