@spinajs/fs-s3 2.0.38
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/index.d.ts +0 -0
- package/lib/index.js +1 -0
- package/lib/index.js.map +1 -0
- package/package.json +45 -0
package/lib/index.d.ts
ADDED
|
File without changes
|
package/lib/index.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
//# sourceMappingURL=index.js.map
|
package/lib/index.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":""}
|
package/package.json
ADDED
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@spinajs/fs-s3",
|
|
3
|
+
"version": "2.0.38",
|
|
4
|
+
"description": "file operations implementation for aws s3 storage",
|
|
5
|
+
"main": "lib/index.js",
|
|
6
|
+
"private": false,
|
|
7
|
+
"scripts": {
|
|
8
|
+
"test": "ts-mocha -p tsconfig.json test/**/*.test.ts",
|
|
9
|
+
"coverage": "nyc npm run test",
|
|
10
|
+
"build-docs": "rimraf docs && typedoc --options typedoc.json src/",
|
|
11
|
+
"build": "npm run clean && npm run compile",
|
|
12
|
+
"compile": "tsc -p tsconfig.build.json",
|
|
13
|
+
"clean": "",
|
|
14
|
+
"prepare": "npm run build",
|
|
15
|
+
"format": "prettier --write \"src/**/*.ts\"",
|
|
16
|
+
"lint": "eslint -c .eslintrc.js --ext .ts src",
|
|
17
|
+
"prepublishOnly": "npm run lint",
|
|
18
|
+
"preversion": "npm run lint",
|
|
19
|
+
"version": "npm run format && git add -A src",
|
|
20
|
+
"postversion": "git push && git push --tags"
|
|
21
|
+
},
|
|
22
|
+
"files": [
|
|
23
|
+
"lib/**/*"
|
|
24
|
+
],
|
|
25
|
+
"repository": {
|
|
26
|
+
"type": "git",
|
|
27
|
+
"url": "git+https://github.com/spinajs/exceptions.git"
|
|
28
|
+
},
|
|
29
|
+
"keywords": [
|
|
30
|
+
"di",
|
|
31
|
+
"container",
|
|
32
|
+
"spinajs",
|
|
33
|
+
"di"
|
|
34
|
+
],
|
|
35
|
+
"author": "SpinaJS <spinajs@coderush.pl> (https://github.com/spinajs/core)",
|
|
36
|
+
"license": "MIT",
|
|
37
|
+
"bugs": {
|
|
38
|
+
"url": "https://github.com/spinajs/exceptions/issues"
|
|
39
|
+
},
|
|
40
|
+
"homepage": "https://github.com/spinajs/exceptions#readme",
|
|
41
|
+
"gitHead": "5ea5440ee9db49595f531592ebdbc6d69f457082",
|
|
42
|
+
"dependencies": {
|
|
43
|
+
"lodash": "^4.17.21"
|
|
44
|
+
}
|
|
45
|
+
}
|