-
Notifications
You must be signed in to change notification settings - Fork 77
/
package.json
61 lines (61 loc) · 1.48 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
{
"name": "mock-aws-s3",
"description": "Mock AWS S3 SDK for Node.js",
"version": "4.0.2",
"homepage": "https://github.com/MathieuLoutre/mock-aws-s3",
"author": {
"name": "Mathieu Triay",
"email": "mathieu.triay@gmail.com"
},
"repository": {
"type": "git",
"url": "git://github.com/MathieuLoutre/mock-aws-s3.git"
},
"bugs": {
"url": "https://github.com/MathieuLoutre/mock-aws-s3/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/MathieuLoutre/mock-aws-s3/blob/master/LICENSE"
}
],
"engines": {
"node": ">=10.0.0"
},
"scripts": {
"test": "grunt",
"lint": "eslint '**/*.js' --ignore-pattern node_modules/",
"lint-fix": "eslint '**/*.js' --ignore-pattern node_modules/ --fix"
},
"dependencies": {
"bluebird": "^3.5.1",
"fs-extra": "^7.0.1",
"underscore": "1.12.1"
},
"devDependencies": {
"chai": "~1.7.2",
"eslint": "^5.9.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-chai-friendly": "^0.5.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"grunt": "^1.0.4",
"grunt-contrib-clean": "~2.0.0",
"grunt-contrib-copy": "~1.0.0",
"grunt-contrib-jshint": "^2.1.0",
"grunt-mocha-test": "^0.13.3",
"mocha": "^7.0.1",
"stream-buffers": "^3.0.2"
},
"keywords": [
"aws",
"s3",
"sdk",
"mock",
"amazon",
"test"
]
}