This repository has been archived by the owner on Oct 22, 2022. It is now read-only.
forked from squidfunk/isotopes
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 1.46 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
{
"name": "isotopes",
"version": "0.6.1",
"description": "Serverless and typed object store built on top of AWS SimpleDB",
"keywords": [
"aws",
"simpledb",
"client",
"typescript",
"serverless",
"storage"
],
"homepage": "https://github.com/squidfunk/isotopes",
"bugs": {
"url": "https://github.com/squidfunk/isotopes/issues",
"email": "[email protected]"
},
"license": "MIT",
"author": {
"name": "Martin Donath",
"email": "[email protected]"
},
"contributors": [],
"repository": {
"type": "git",
"url": "https://github.com/squidfunk/isotopes.git"
},
"main": "dist/index.js",
"scripts": {
"build": "make build",
"clean": "make clean",
"lint": "make lint",
"test": "make test",
"watch": "make watch"
},
"dependencies": {
"lodash": "^4.17.21",
"squel": "^5.13.0"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.78",
"@types/chance": "^1.1.3",
"@types/jasmine": "^3.8.1",
"@types/lodash": "^4.14.171",
"@types/node": "^15.0.1",
"aws-sdk": "^2.943.0",
"aws-sdk-mock": "^5.2.1",
"chance": "^1.1.6",
"codecov": "^3.8.2",
"jasmine": "^3.8.0",
"jasmine-spec-reporter": "^6.0.0",
"nodemon": "^2.0.12",
"nyc": "^15.1.0",
"ts-node": "^9.1.1",
"tsconfig-paths": "^3.10.1",
"tslint": "^5.12.0",
"tslint-sonarts": "^1.9.0",
"typescript": "^3.9.10"
},
"peerDependencies": {
"aws-sdk": "*"
}
}