-
Notifications
You must be signed in to change notification settings - Fork 149
/
package.json
88 lines (88 loc) · 1.97 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
87
88
{
"name": "s3rver",
"version": "4.0.0",
"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]:jamhall/s3rver.git"
},
"bugs": {
"url": "https://github.com/jamhall/s3rver/issues"
},
"homepage": "https://github.com/jamhall/s3rver",
"scripts": {
"coverage": "nyc npm 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": ">=12.13.0"
},
"dependencies": {
"@koa/router": "^10.0.0",
"busboy": "^0.3.1",
"commander": "^8.0.0",
"fast-xml-parser": "^3.19.0",
"he": "^1.2.0",
"koa": "^2.12.1",
"koa-logger": "^3.2.0",
"lodash": "^4.17.20",
"statuses": "^2.0.0",
"winston": "^3.0.0"
},
"devDependencies": {
"aws-sdk": "2.999.0",
"chai": "4.3.4",
"chai-as-promised": "7.1.1",
"eslint": "7.32.0",
"eslint-config-prettier": "8.3.0",
"eslint-config-standard": "16.0.3",
"eslint-plugin-import": "2.24.2",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-promise": "5.1.0",
"eslint-plugin-standard": "4.1.0",
"express": "4.17.1",
"form-data": "4.0.0",
"husky": "7.0.2",
"lint-staged": "11.2.0",
"mocha": "9.1.2",
"moment": "2.29.1",
"nyc": "15.1.0",
"p-map": "4.0.0",
"prettier": "2.4.1",
"request": "2.88.2",
"request-promise-native": "1.0.9"
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*": "prettier --write --ignore-unknown"
}
}