-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.44 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": "@talaikis/s3-db",
"version": "1.0.4",
"description": "AWS S3 JSON table level database.",
"main": "dist/index.js",
"scripts": {
"test": "mocha --timeout 100000 test/",
"compile": "ncc build index.js -o dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TalaikisInc/s3-db.git"
},
"keywords": [
"json",
"db",
"database",
"node",
"s3",
"aws",
"nodejs",
"storage"
],
"author": "Tadas Talaikis <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/TalaikisInc/s3-db/issues"
},
"homepage": "https://talaikis.com",
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/register": "^7.5.5",
"@zeit/ncc": "^0.20.4",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"core-js": "^3.2.1",
"eslint": "^6.2.2",
"eslint-config-standard": "^14.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"faker": "^4.1.0",
"husky": "^3.0.4",
"mocha": "^6.2.0",
"regenerator-runtime": "^0.13.3"
},
"husky": {
"hooks": {
"pre-commit": "npm run test && npm run compile",
"pre-push": "npm run test"
}
},
"dependencies": {
"@aws-amplify/core": "^1.1.0",
"@aws-amplify/storage": "^1.1.0",
"aws-sdk": "^2.517.0",
"axios": "^0.19.0"
}
}