-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.36 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
{
"name": "@tsmetadata/json-api-orm",
"version": "1.0.0",
"description": "Object-relational mapping for JSON:API resource objects decorated with `@tsmetadata/json-api`.",
"author": "Ryan Huellen <[email protected]>",
"keywords": ["json", "api", "metadata", "orm", "typescript", "ts"],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/tsmetadata/json-api-orm.git"
},
"publishConfig": {
"access": "public"
},
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"build": "npm run clean && tsc",
"clean": "rm -rf ./lib",
"fix": "biome check --write .",
"lint": "biome lint .",
"verify": "biome ci . && npm run test",
"test": "jest --coverage"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@biomejs/cli-linux-x64": "^1.9.4",
"@types/chance": "^1.1.6",
"@types/flat": "^5.0.5",
"@types/jest": "^29.5.14",
"@types/lodash": "^4.17.13",
"aws-sdk-client-mock": "^4.1.0",
"chance": "^1.1.12",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
},
"dependencies": {
"@aws-sdk/client-dynamodb": "^3.705.0",
"@aws-sdk/util-dynamodb": "^3.705.0",
"aws-sdk": "^2.1692.0",
"flat": "^5.0.2",
"lodash": "^4.17.21"
},
"peerDependencies": {
"@tsmetadata/json-api": "^2.0.3"
}
}