-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.15 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
{
"name": "omanyd",
"version": "0.8.1",
"contributors": [
"Tom Andrews <[email protected]>"
],
"description": "DynamoDB data mapper for nodejs",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "rm -rf lib && tsc",
"typecheck": "tsc --noEmit",
"test": "./scripts/test.sh",
"format": "prettier **/*.ts",
"release": "np --no-publish --branch=main"
},
"repository": "git://github.com/tgandrews/omanyd.git",
"keywords": [
"omanyd",
"datamapper",
"DynamoDB",
"aws",
"amazon",
"nosql"
],
"engines": {
"node": ">=16"
},
"license": "MIT",
"dependencies": {
"@aws-sdk/client-dynamodb": "^3.188.0",
"joi": "^17.6.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"@tsconfig/node16": "^1.0.3",
"@types/jest": "^29.4.0",
"@types/node": "^18.13.0",
"@types/uuid": "^9.0.0",
"husky": "^8.0.1",
"jest": "^29.4.1",
"lint-staged": "^13.1.1",
"np": "^7.6.1",
"prettier": "^2.6.2",
"ts-jest": "^29.0.5",
"ts-node": "^10.8.0",
"typescript": "^4.6.4"
},
"lint-staged": {
"*.{ts,md}": [
"prettier --write"
]
}
}