-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
89 lines (89 loc) · 2.3 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "dyngoose",
"version": "4.11.2",
"type": "commonjs",
"description": "Elegant DynamoDB object modeling for Typescript",
"keywords": [
"dynamo",
"dynamodb",
"orm",
"odm",
"serverless",
"aws-dynamodb",
"typescript"
],
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"prebuild": "check-engine && rm -rf lib",
"build": "tsc",
"watch": "tsc --watch",
"pretest": "npm run build",
"test": "env AWS_REGION=us-east-1 AWS_ACCESS_KEY_ID=abcde AWS_SECRET_ACCESS_KEY=abcde mocha --timeout 20000 --recursive lib",
"test:local": "env DYNAMO_ENDPOINT=http://127.0.0.1:8000 npm test",
"prepublishOnly": "npm run build",
"lint": "eslint 'src/**/*.ts'",
"autofix": "eslint --fix 'src/**/*.ts'",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/benhutchins/dyngoose.git"
},
"engines": {
"node": ">=12.4.0"
},
"author": "Benjamin Hutchins",
"license": "ISC",
"bugs": {
"url": "https://github.com/benhutchins/dyngoose/issues"
},
"homepage": "https://github.com/benhutchins/dyngoose#readme",
"devDependencies": {
"@aws-sdk/client-dynamodb": "^3.309.0",
"@commitlint/cli": "^17.5.1",
"@commitlint/config-conventional": "^17.4.4",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/chai": "4.3.4",
"@types/lodash": "^4.14.192",
"@types/mocha": "9.0.0",
"@types/node": "^18.15.11",
"aws-cdk-lib": "^2.73.0",
"chai": "4.3.7",
"check-engine": "1.10.1",
"eslint": "^8.38.0",
"eslint-config-standard-with-typescript": "^34.0.1",
"husky": "^8.0.3",
"mocha": "9.1.2",
"semantic-release": "^21.0.1",
"typescript": "^5.0.4"
},
"dependencies": {
"@aws-sdk/util-dynamodb": "^3.309.0",
"async-sema": "^3.1.1",
"lodash": "^4.17.21"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"peerDependencies": {
"@aws-sdk/client-dynamodb": "^3.279.0"
},
"optionalDependencies": {
"aws-xray-sdk-core": "^3.5.1"
}
}