-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.71 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
{
"name": "ddb-table-util",
"version": "0.8.0",
"description": "DynamoDB document client wrapper which provides some additional utilities.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"prepare": "npm run build",
"test": "jest",
"test:coverage": "jest --runInBand --collectCoverage=true",
"build": "rimraf dist && tsc -p tsconfig.build.json",
"prettier": "run-p prettier:src prettier:test",
"prettier:src": "prettier --ignore-path .gitignore --write \"src/**/*.{ts,js,json}\"",
"prettier:test": "prettier --ignore-path .gitignore --write \"test/**/*.{ts,js,json}\"",
"eslint": "run-p eslint:src eslint:test",
"eslint:src": "eslint --fix --ext .ts,.js ./src",
"eslint:test": "eslint --fix --ext .ts,.js ./test",
"format": "run-s prettier eslint"
},
"author": "Keisuke Yamamoto",
"license": "MIT",
"devDependencies": {
"@aws-sdk/client-dynamodb": "3.353.0",
"@aws-sdk/lib-dynamodb": "3.353.0",
"@types/jest": "29.5.2",
"@typescript-eslint/eslint-plugin": "5.59.8",
"@typescript-eslint/parser": "5.59.8",
"eslint": "8.41.0",
"eslint-config-prettier": "8.8.0",
"eslint-import-resolver-typescript": "3.5.5",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jest": "27.2.1",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-simple-import-sort": "10.0.0",
"eslint-plugin-unused-imports": "2.0.0",
"jest": "29.5.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.8",
"rimraf": "^5.0.1",
"ts-jest": "29.1.0",
"typescript": "4.7.4",
"ulid": "2.3.0"
},
"peerDependencies": {
"@aws-sdk/client-dynamodb": "^3.353.0",
"@aws-sdk/lib-dynamodb": "^3.353.0"
}
}