-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
97 lines (97 loc) · 2.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
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
90
91
92
93
94
95
96
97
{
"name": "@nasa-gcn/dynamodb-autoincrement",
"description": "Use optimistic locking to put DynamoDB records with auto-incrementing attributes",
"version": "2.2.1",
"repository": {
"type": "git",
"url": "github:nasa-gcn/dynamodb-autoincrement"
},
"license": "Apache-2.0",
"contributors": [
{
"name": "Leo Singer",
"email": "[email protected]"
},
{
"name": "Dakota Dutko",
"email": "[email protected]"
}
],
"files": [
"index.js",
"index.d.ts"
],
"scripts": {
"prepare:husky": "husky",
"prepare:tsc": "tsc",
"prepare": "run-p prepare:*",
"test": "jest"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"@aws-sdk/client-dynamodb": "^3.188.0",
"@aws-sdk/lib-dynamodb": "^3.188.0",
"@aws-sdk/util-dynamodb": "^3.188.0"
},
"devDependencies": {
"@nasa-gcn/eslint-config-gitignore": "^0.0.2",
"@shelf/jest-dynamodb": "^3.4.2",
"@tsconfig/node14": "^14.1.2",
"@types/jest": "^29.2.5",
"@typescript-eslint/eslint-plugin": "^7.16.1",
"@typescript-eslint/parser": "^7.16.1",
"eslint": "^8.31.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.6.0",
"husky": "^9.1.0",
"jest": "^29.3.1",
"lint-staged": "^15.2.7",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.0",
"ts-jest": "^29.0.3",
"typescript": "^5.5.3"
},
"sideEffects": false,
"prettier": {
"semi": false,
"singleQuote": true,
"trailingComma": "es5"
},
"eslintConfig": {
"env": {
"es2019": true,
"node": true
},
"extends": [
"eslint:recommended",
"@nasa-gcn/eslint-config-gitignore",
"prettier"
],
"overrides": [
{
"files": "*.ts",
"extends": [
"plugin:@typescript-eslint/recommended"
],
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint"
]
},
{
"files": "test.ts",
"plugins": [
"jest"
],
"extends": [
"plugin:jest/recommended"
]
}
],
"parserOptions": {
"sourceType": "module"
}
}
}