forked from jamhall/s3rver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 1.91 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "@20minutes/s3rver",
"version": "4.0.1",
"description": "Fake S3 server for node",
"keywords": [
"fake",
"s3",
"server",
"mock",
"false",
"aws",
"amazon"
],
"author": {
"name": "Jamie Hall",
"email": "[email protected]",
"url": "http://github.com/jamhall/s3rver"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:20minutes/s3rver.git"
},
"bugs": {
"url": "https://github.com/20minutes/s3rver/issues"
},
"homepage": "https://github.com/20minutes/s3rver",
"scripts": {
"coverage": "nyc yarn test",
"test": "mocha",
"fmt": "eslint . --fix && prettier . --write",
"prepare": "husky install"
},
"main": "lib/s3rver.js",
"files": [
"lib/",
"example/*.xml"
],
"bin": "bin/s3rver.js",
"directories": {
"lib": "./lib",
"example": "./example",
"test": "./test"
},
"engines": {
"node": ">=20"
},
"dependencies": {
"@koa/router": "^12.0.1",
"busboy": "^1.6.0",
"commander": "^12.1.0",
"fast-xml-parser": "^4.4.1",
"he": "^1.2.0",
"koa": "^2.15.3",
"koa-logger": "^3.2.0",
"lodash": "^4.17.20",
"statuses": "^2.0.0",
"winston": "^3.14.1"
},
"devDependencies": {
"aws-sdk": "^2.1673.0",
"aws4": "^1.13.1",
"axios": "^1.7.3",
"chai": "^4.3.10",
"chai-as-promised": "^7.1.1",
"eslint": "^8.50.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-promise": "^7.1.0",
"express": "^4.19.2",
"form-data": "^4.0.0",
"husky": "^9.1.4",
"lint-staged": "^15.2.9",
"mocha": "^10.7.3",
"moment": "^2.30.1",
"nyc": "^17.0.0",
"p-map": "^4.0.0",
"prettier": "^3.3.3"
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*": "prettier --write --ignore-unknown"
}
}