s3db.js 1.0.2 → 1.0.4

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.
Files changed (2) hide show
  1. package/README.md +2 -2
  2. package/package.json +30 -30
package/README.md CHANGED
@@ -55,9 +55,9 @@ Lets give it a try! :)
55
55
  ## Install
56
56
 
57
57
  ```bash
58
- npm i https://github.com/forattini-dev/s3db.js
58
+ npm i s3db.js
59
59
  # or
60
- yarn add https://github.com/forattini-dev/s3db.js
60
+ yarn add s3db.js
61
61
  ```
62
62
 
63
63
  ## Usage
package/package.json CHANGED
@@ -1,10 +1,27 @@
1
1
  {
2
2
  "name": "s3db.js",
3
- "version": "1.0.2",
3
+ "version": "1.0.4",
4
4
  "description": "Use AWS S3 as a cheap document database.",
5
5
  "main": "build/index.js",
6
6
  "author": "filipeforattini",
7
7
  "license": "UNLICENSE",
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "git+https://github.com/filipeforattini/s3db.js.git"
11
+ },
12
+ "bugs": {
13
+ "url": "https://github.com/filipeforattini/s3db.js/issues"
14
+ },
15
+ "homepage": "https://github.com/filipeforattini/s3db.js#readme",
16
+ "directories": {
17
+ "example": "examples",
18
+ "test": "tests"
19
+ },
20
+ "keywords": [
21
+ "s3",
22
+ "aws",
23
+ "database"
24
+ ],
8
25
  "scripts": {
9
26
  "build": "rimraf ./build && tsc",
10
27
  "test": "jest --coverage",
@@ -18,6 +35,17 @@
18
35
  "example:5": "cd examples; node 5-write-stream.js",
19
36
  "example:6": "cd examples; node 6-jwt-tokens.js"
20
37
  },
38
+ "dependencies": {
39
+ "@supercharge/promise-pool": "^2.3.2",
40
+ "avsc": "^5.7.7",
41
+ "aws-sdk": "^2.1261.0",
42
+ "crypto-js": "^4.1.1",
43
+ "fastest-validator": "^1.15.0",
44
+ "flat": "^5.0.2",
45
+ "lodash": "^4.17.21",
46
+ "nanoid": "3.3.4",
47
+ "ts-mixer": "^6.0.2"
48
+ },
21
49
  "devDependencies": {
22
50
  "@types/crypto-js": "^4.1.1",
23
51
  "@types/flat": "^5.0.2",
@@ -38,33 +66,5 @@
38
66
  "ts-jest": "^29.0.3",
39
67
  "ts-node": "^10.9.1",
40
68
  "typescript": "^4.9.3"
41
- },
42
- "dependencies": {
43
- "@supercharge/promise-pool": "^2.3.2",
44
- "avsc": "^5.7.7",
45
- "aws-sdk": "^2.1261.0",
46
- "crypto-js": "^4.1.1",
47
- "fastest-validator": "^1.15.0",
48
- "flat": "^5.0.2",
49
- "lodash": "^4.17.21",
50
- "nanoid": "3.3.4",
51
- "ts-mixer": "^6.0.2"
52
- },
53
- "directories": {
54
- "example": "examples",
55
- "test": "tests"
56
- },
57
- "repository": {
58
- "type": "git",
59
- "url": "git+https://github.com/filipeforattini/s3db.js.git"
60
- },
61
- "keywords": [
62
- "s3",
63
- "aws",
64
- "database"
65
- ],
66
- "bugs": {
67
- "url": "https://github.com/filipeforattini/s3db.js/issues"
68
- },
69
- "homepage": "https://github.com/filipeforattini/s3db.js#readme"
69
+ }
70
70
  }