forked from jamhall/s3rver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.74 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
{
"name": "s3rver",
"version": "2.2.7",
"description": "Fake S3 server for node",
"main": "lib/index.js",
"scripts": {
"test": "mocha --require co-mocha --timeout 30000 --reporter spec --ui bdd",
"prettier-check": "prettier-check --ignore-path .gitignore \"**/*.js\"",
"prettier-fix": "prettier --ignore-path .gitignore --write \"**/*.js\"",
"eslint": "eslint --ignore-path .gitignore \"**/*.js\"",
"eslint-fix": "eslint --ignore-path .gitignore --fix \"**/*.js\""
},
"author": {
"name": "Jamie Hall",
"email": "[email protected]",
"url": "http://github.com/jamhall/s3rver"
},
"bin": {
"s3rver": "bin/s3rver.js"
},
"license": "MIT",
"keywords": [
"fake",
"s3",
"server",
"mock",
"false",
"amazon"
],
"dependencies": {
"async": "^2.0.0",
"commander": "^2.6.0",
"concat-stream": "^1.5.2",
"express": "^4.10.6",
"fs-extra": "^7.0.0",
"jstoxml": "^1.0.0",
"lodash": "^4.17.5",
"morgan": "^1.5.1",
"promise-limit": "^2.6.0",
"rxjs": "^6.0.0",
"winston": "^2.1.0",
"xml2js": "^0.4.4",
"xmlbuilder": "^10.0.0"
},
"devDependencies": {
"aws-sdk": "2.392.0",
"chai": "4.2.0",
"chai-as-promised": "7.1.1",
"co-mocha": "1.2.2",
"eslint": "5.12.1",
"eslint-config-prettier": "3.6.0",
"md5": "2.2.1",
"mocha": "5.2.0",
"moment": "2.24.0",
"prettier": "1.16.1",
"prettier-check": "2.0.0",
"request": "2.88.0",
"request-promise-native": "1.0.5"
},
"engines": {
"node": ">=6.0.0"
},
"bugs": {
"url": "https://github.com/jamhall/s3rver/issues"
},
"repository": {
"type": "git",
"url": "[email protected]:jamhall/s3rver.git"
},
"homepage": "https://github.com/jamhall/s3rver"
}