forked from sawilde/isotopes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 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
64
65
66
67
68
{
"name": "@many-monkeys/isotopes",
"version": "0.1.1",
"description": "Serverless and typed object store built on top of AWS SimpleDB",
"keywords": [
"aws",
"simpledb",
"client",
"typescript",
"serverless",
"storage"
],
"homepage": "https://github.com/many-monkeys/isotopes",
"bugs": {
"url": "https://github.com/many-monkeys/issues"
},
"license": "MIT",
"author": {
"name": "Head-Monkey"
},
"contributors": [
{
"name": "Head-Monkey"
},
{
"name": "Martin Donath"
}
],
"repository": {
"type": "git",
"url": "https://github.com/many-monkeys/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.108",
"@types/chance": "1.1.3",
"@types/jasmine": "4.3.0",
"@types/lodash": "4.14.186",
"@types/node": "16.11.68",
"aws-sdk": "2.1238.0",
"aws-sdk-mock": "5.8.0",
"chance": "1.1.9",
"codecov": "3.8.3",
"jasmine": "4.4.0",
"jasmine-spec-reporter": "7.0.0",
"nodemon": "2.0.20",
"nyc": "15.1.0",
"ts-node": "10.9.1",
"tsconfig-paths": "4.1.0",
"tslint": "5.20.1",
"tslint-sonarts": "1.9.0",
"typescript": "4.8.4"
},
"peerDependencies": {
"aws-sdk": "*"
}
}