-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.91 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
69
70
71
72
73
{
"name": "dynamodb-armor",
"version": "0.0.0",
"description": "DynamoDB Armor provides a drop-in replacement removing all the hidden traps with the DynamoDB SDK. You won't even notice it!",
"main": "./src/dynamoDbSafe.js",
"types": "./index.d.ts",
"files": [
"index.d.ts",
"src"
],
"scripts": {
"lint": "eslint --ext .js,.ts src tests make.js",
"validate-types": "check-dts index.d.ts",
"test": "mocha tests/**/*.test.js -R spec"
},
"peerDependencies": {
"aws-sdk": "<=3"
},
"devDependencies": {
"@babel/core": "^7.15.8",
"@babel/eslint-parser": "^7.15.8",
"@types/node": "^16.11.7",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"aws-architect": "^6.6.10",
"aws-sdk": "^2.1028.0",
"chai": "^4.2.0",
"check-dts": "^0.4.4",
"ci-build-tools": "^1.0.13",
"commander": "^4.0.1",
"eslint": "^7.20.0",
"eslint-config-cimpress-atsquad": "^1.0.67",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-mocha": "^8.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.1",
"fs-extra": "^8.1.0",
"glob": "^7.1.6",
"mocha": "^8.2.1",
"nodemon": "^2.0.6",
"nyc": "^15.1.0",
"sinon": "^7.5.0",
"sinon-chai": "^3.3.0",
"typescript": "^4.4.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Rhosys/dynamodb-armor"
},
"keywords": [
"DynamoDB",
"DynamoDB Armor",
"DynamoDB Default",
"DynamoDB protection",
"AWS",
"AWS DynamoDB",
"DynamoDB foot gun",
"DynamoDB security",
"DynamoDB fixes"
],
"author": "Rhosys Developers <[email protected]> (https://rhosys.ch)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Rhosys/dynamodb-armor/issues"
},
"homepage": "https://rhosys.ch",
"engines": {
"node": ">=16"
},
"dependencies": {
"lodash.clonedeep": "^4.5.0"
}
}