forked from mjy78/s3fs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.27 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": "s3fs",
"version": "2.5.0",
"description": "Implementation of Node.JS FS interface using Amazon Simple Storage Service (S3).",
"keywords": [
"s3fs",
"amazon s3",
"aws s3",
"fs",
"file system",
"simple storage service",
"amazon"
],
"homepage": "http://github.com/RiptideElements/s3fs",
"repository": {
"type": "git",
"url": "git://github.com/RiptideElements/s3fs.git"
},
"bugs": {
"url": "http://github.com/RiptideElements/s3fs/issues"
},
"author": {
"name": "David Pate",
"email": "davidtpate@gmail.com",
"url": "https://github.com/DavidTPate"
},
"contributors": [
{
"name": "Jhorlin De Armas",
"email": "Jhorlin@gmail.com",
"url": "https://github.com/Jhorlin"
}
],
"license": "MIT",
"main": "index.js",
"dependencies": {
"@aws-sdk/client-s3": "^3.129.0",
"bluebird": "^3.5.5",
"extend": "~3.x"
},
"devDependencies": {
"buddy.js": "~0.x",
"chai": "~3.x",
"chai-as-promised": "~6.0.0",
"dirty-chai": "~1.2.2",
"eslint": "~3.7.1",
"istanbul": "~0.4.5",
"jscs": "~3.0.7",
"jsinspect": "~0.x",
"mocha": "~3.1.2",
"nsp": "~2.6.2",
"through2": "~2.x",
"semantic-release": "^15.0.2",
"@semantic-release/git": "^4.0.0",
"@semantic-release/github": "^4.2.8",
"@semantic-release/npm": "^3.2.2"
},
"scripts": {
"lint": "eslint . && jscs . && jsinspect . && buddy --detect-objects index.js ./lib",
"security": "nsp check",
"cover": "istanbul cover _mocha -- --check-leaks --recursive --timeout=25000 test && istanbul check-coverage --statements 80.95 --branches 76.56 --functions 74.3 --lines 80.95",
"test": "mocha --check-leaks --recursive --timeout=50000 test",
"test-ci": "npm run lint && npm run security && npm run cover",
"semantic-release": "semantic-release"
},
"release": {
"branches": [
"master"
],
"verifyConditions": [
"@semantic-release/github",
"@semantic-release/git"
],
"getLastRelease": "@semantic-release/github",
"prepare": [
"@semantic-release/npm",
"@semantic-release/git"
],
"publish": [
{
"path": "@semantic-release/npm",
"npmPublish": false
},
"@semantic-release/github"
]
}
}