-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
70 lines (70 loc) · 1.93 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
{
"name": "dynamo-pipeline",
"version": "0.2.9",
"description": "Alternative API for DynamoDB's DocumentClient",
"main": "lib/index.js",
"module": "esm/index.js",
"exports": {
"import": "./esm/index.js",
"require": "./lib/index.js",
"default": "./esm/index.js"
},
"files": [
"lib",
"esm"
],
"repository": "https://github.com/RossWilliams/dynamo-pipeline.git",
"author": "RossWilliams",
"license": "Apache-2.0",
"private": false,
"scripts": {
"clean": "rm -rf lib && rm -rf esm && rm -rf .buildcache",
"build": "tsc -p tsconfig.json && tsc -p tsconfig-cjs.json",
"build:watch": "tsc --build --watch",
"test": "NODE_ENV=test jest",
"test:watch": "NODE_ENV=test jest --watch",
"test:dynamodb": "TEST_WITH_DYNAMO=true NODE_ENV=test jest",
"lint": "eslint . --cache --cache-location '.buildcache/lint/' --fix",
"format": "prettier . --write",
"types": "tsc --noEmit --pretty",
"prepare": "husky install"
},
"dependencies": {
"aws-sdk": "^2.1515.0",
"aws-sdk-mock": "^5.8.0"
},
"peerDependencies": {
"@types/jest": ">=26.0.19"
},
"devDependencies": {
"@swc/core": "^1.3.100",
"@swc/jest": "^0.2.29",
"@types/jest": "*",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"eslint": "^8.55.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-standard": "^5.0.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"prettier": "^3.1.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "5.3.3"
},
"engines": {
"pnpm": ">=8.10.5",
"node": ">=18",
"yarn": "forbidden, use pnpm",
"npm": "forbidden, use pnpm"
},
"packageManager": "[email protected]",
"volta": {
"node": "18.15.0",
"pnpm": "8.10.5"
}
}