-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.92 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.92 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
{
"name": "nodecredstash",
"version": "0.0.0",
"description": "Node.js CredStash implementation",
"main": "src/index.js",
"files": [
"src/**/*.js",
"src/**/*.d.ts"
],
"engines": {
"node": ">=20"
},
"scripts": {
"lint": "eslint . --cache",
"pretest": "npm run lint",
"test": "npx vitest run --coverage",
"prepublishOnly": "tsc -p tsconfig.build.json",
"clean": "tsc --build --clean; rm -rf tsconfig.build.tsbuildinfo tsconfig.tsbuildinfo",
"prepare": "husky install"
},
"keywords": [
"credstash",
"kms",
"aws",
"node.js"
],
"author": "David Tanner",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/DavidTanner/nodecredstash.git"
},
"devDependencies": {
"@aws-sdk/util-dynamodb": "^3.137.0",
"@commitlint/cli": "^17.8.0",
"@commitlint/config-conventional": "^17.8.0",
"@eslint/compat": "^1.3.2",
"@eslint/js": "^9.35.0",
"@semantic-release/npm": "13.0.0-alpha.5",
"@stylistic/eslint-plugin": "^3.1.0",
"@types/debug": "^4.1.9",
"@types/node": "^22.18.1",
"@vitest/coverage-v8": "^3.2.4",
"aws-sdk-client-mock": "^3.1.0",
"conventional-changelog-conventionalcommits": "^7.0.2",
"eslint": "^9.35.0",
"eslint-config-airbnb-extended": "^2.2.0",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-import-x": "^4.16.1",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-n": "^17.21.3",
"husky": "^8.0.3",
"jiti": "^2.5.1",
"lint-staged": "^15.0.1",
"semantic-release": "25.0.0-alpha.4",
"typescript": "^5.9.2",
"typescript-eslint": "^8.42.0",
"vitest": "^3.2.4"
},
"dependencies": {
"@aws-sdk/client-dynamodb": "^3.137.0",
"@aws-sdk/client-kms": "^3.137.0",
"@aws-sdk/lib-dynamodb": "^3.137.0",
"debug": "^4.3.4"
},
"lint-staged": {
"*.ts": "eslint --cache --fix"
}
}