forked from jamhall/s3rver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.13 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
{
"name": "s3rver",
"version": "3.5.0",
"description": "Fake S3 server for node",
"keywords": [
"fake",
"s3",
"server",
"mock",
"false",
"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": {
"test": "mocha --timeout 10000 --reporter spec --ui bdd",
"eslint": "eslint --ignore-path .gitignore \"**/*.js\"",
"prettier-check": "prettier-check --ignore-path .gitignore \"**/*.{js,md}\"",
"format": "eslint --fix --ignore-path .gitignore \"**/*.js\" && prettier --ignore-path .gitignore --write \"**/*.{js,md}\""
},
"main": "lib/s3rver.js",
"files": [
"bin/**/*",
"lib/**/*",
"example/*.xml"
],
"bin": {
"s3rver": "bin/s3rver.js"
},
"directories": {
"lib": "./lib",
"example": "./example",
"test": "./test"
},
"engines": {
"node": ">=8.3.0"
},
"dependencies": {
"@koa/router": "^8.0.0",
"commander": "^4.0.0",
"fast-xml-parser": "^3.12.19",
"fs-extra": "^8.0.0",
"he": "^1.2.0",
"koa": "^2.7.0",
"koa-logger": "^3.2.0",
"lodash": "^4.17.5",
"md5-file": "^4.0.0",
"multiparty": "^4.2.1",
"statuses": "^1.5.0",
"winston": "^3.0.0"
},
"devDependencies": {
"aws-sdk": "2.635.0",
"chai": "4.2.0",
"chai-as-promised": "7.1.1",
"eslint": "6.8.0",
"eslint-config-prettier": "6.10.0",
"eslint-config-semistandard": "15.0.0",
"eslint-config-standard": "14.1.0",
"eslint-plugin-import": "2.20.1",
"eslint-plugin-node": "11.0.0",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-standard": "4.0.1",
"express": "4.17.1",
"md5": "2.2.1",
"mocha": "7.1.0",
"moment": "2.24.0",
"prettier": "1.19.1",
"prettier-check": "2.0.0",
"promise-limit": "2.7.0",
"request": "2.88.2",
"request-promise-native": "1.0.8",
"rxjs": "6.5.4"
}
}