-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.01 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.01 KB
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
{
"name": "dynamo-arc",
"version": "2.2.2",
"description": "A dynamo data client designed for use with DynamoDB Single Table applications",
"scripts": {
"style": "prettier --write \"{src,test}/**/*.ts\"",
"build": "run-s build:clean build:tsc build:package",
"build:tsc": "tsc",
"build:clean": "rimraf lib",
"build:package": "rollup -c",
"lint": "eslint 'src/**/*.{js,ts,tsx}' --quiet --fix",
"check": "npm run style && npm run lint",
"test": "npm run check && npm run test:unit",
"test:unit": "jest",
"test:watch": "jest --watch",
"test:ci": "npm run test",
"test:coverage": "jest && open coverage/index.html",
"release": "npm run build && np"
},
"main": "lib/main.js",
"types": "lib/types/main.d.ts",
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "git@github.com:Nike-Inc/dynamo-arc.git"
},
"keywords": [
"dynamo"
],
"author": "Tim Kye",
"license": "Apache-2.0",
"engines": {
"node": ">=12"
},
"dependencies": {
"@aws-sdk/client-dynamodb": "3.808.0",
"@aws-sdk/lib-dynamodb": "3.808.0",
"@aws-sdk/types": "3.804.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.26.0",
"@jest/globals": "^29.7.0",
"@rollup/plugin-commonjs": "^28.0.3",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.2",
"@types/jest": "^29.5.14",
"@types/sinon": "^17.0.4",
"@typescript-eslint/eslint-plugin": "^8.32.1",
"@typescript-eslint/parser": "^8.32.1",
"eslint": "^9.26.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.4.0",
"jest": "^29.7.0",
"jest-watch-typeahead": "^2.2.2",
"nock": "^14.0.4",
"np": "^10.2.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.5.3",
"rimraf": "^6.0.1",
"rollup": "^4.40.2",
"sinon": "^20.0.0",
"ts-jest": "^29.3.2",
"tslib": "^2.8.1",
"typescript": "^5.8.3"
}
}