-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
64 lines (64 loc) · 1.8 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
{
"name": "@serverless-seoul/dynamorm",
"version": "3.0.1",
"description": "AWS DynamoDB ORM for Typescript",
"repository": {
"type": "git",
"url": "https://github.com/serverless-seoul/dynamorm.git"
},
"keywords": [
"DynamoDB",
"AWS",
"Typescript",
"ORM",
"Serverless"
],
"bugs": {
"url": "https://github.com/serverless-seoul/dynamorm/issues"
},
"homepage": "https://github.com/serverless-seoul/dynamorm",
"main": "./dst/index.js",
"typings": "./dst/index.d.ts",
"scripts": {
"prebuild": "check-engine && rm -rf dst",
"build": "tsc",
"pretest": "npm run build -- -p ./tsconfig.test.json",
"test": "env AWS_REGION=us-east-1 AWS_ACCESS_KEY_ID=mock AWS_SECRET_ACCESS_KEY=mock mocha -t 20000 dst/**/__test__/**/*.js",
"test:ci": "npm test -- --forbid-only",
"prepublishOnly": "npm run build",
"lint": "eslint src"
},
"engines": {
"node": ">=18.0.0"
},
"author": "Kurt Lee",
"license": "Apache-2.0",
"devDependencies": {
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/github": "^7.1.1",
"@types/chai": "4.2.12",
"@types/faker": "^5.1.2",
"@types/lodash": "^4.14.161",
"@types/mocha": "^8.0.3",
"@types/node": "12.12.62",
"@types/reflect-metadata": "^0.1.0",
"@typescript-eslint/eslint-plugin": "^6.16.0",
"@typescript-eslint/parser": "^6.16.0",
"chai": "4.2.0",
"check-engine": "^1.12.0",
"eslint": "^8.56.0",
"eslint-plugin-import": "^2.29.1",
"faker": "^5.1.0",
"mocha": "^8.1.3",
"semantic-release": "^17.1.1",
"typescript": "^5.3.3"
},
"dependencies": {
"amazon-dax-client": "^1.2.2",
"aws-sdk": "^2.538.0",
"aws-xray-sdk-core": "^2.3.6",
"lodash": "^4.17.21",
"reflect-metadata": "^0.2.1"
}
}