-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.83 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.83 KB
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
{
"name": "@jupiterone/dynamodb-dao",
"version": "4.0.0",
"description": "DynamoDB Data Access Object (DAO) helper library",
"repository": {
"type": "git",
"url": "https://github.com/JupiterOne/dynamodb-dao"
},
"license": "MIT",
"main": "index.js",
"types": "index.d.ts",
"author": "JupiterOne <dev@jupiterone.io>",
"publishConfig": {
"access": "public"
},
"scripts": {
"start:containers": "docker-compose up dynamodb",
"stop:containers": "docker-compose down",
"lint": "eslint . --cache --fix --ext .ts,.tsx",
"format": "prettier --write '**/*.{ts,js,json,css,md,yml}'",
"type-check": "tsc --noEmit",
"test": "jest --maxWorker=1 --runInBand",
"test:ci": "npm run lint && npm run type-check && ./run-test-ci.sh",
"compile": "tsc -p tsconfig.dist.json --declaration",
"prebuild": "rm -rf dist",
"build": "npm run compile && cp README.md LICENSE package-lock.json package.json ./dist",
"autobuild": "npm run build && (cd ./dist && npm install --production && npm link) && npx nodemon --exec 'npm run compile' --watch src -e ts --delay 3",
"validate:ci": "npm run build && npm run lint && npm run type-check && npm run test:ci"
},
"dependencies": {
"@aws-sdk/client-dynamodb": "^3",
"@aws-sdk/lib-dynamodb": "^3",
"@lifeomic/attempt": "^3.1.0",
"lodash": "^4.17.21",
"p-map": "^4.0.0"
},
"peerDependencies": {
"@aws-sdk/client-dynamodb": "^3",
"@aws-sdk/lib-dynamodb": "^3"
},
"devDependencies": {
"@jupiterone/eslint-config": "^3.0.0",
"@jupiterone/typescript-tools": "^20.0.0",
"@types/jest": "^30.0.0",
"@types/lodash": "^4.17.23",
"@types/node": "^25.0.9",
"@types/uuid": "^10.0.0",
"jest": "^30.0.0",
"nodemon": "^3.1.11",
"ts-jest": "^29.4.6",
"uuid": "^13.0.0"
},
"engines": {
"node": ">=18"
}
}