-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
67 lines (67 loc) · 1.83 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
{
"name": "nodecredstash",
"version": "0.0.0",
"description": "Node.js CredStash implementation",
"main": "src/index.js",
"files": [
"src/**/*.js",
"src/**/*.d.ts"
],
"engines": {
"node": ">=14",
"npm": ">=2.14.7"
},
"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",
"@types/debug": "^4.1.9",
"@types/node": "^18.18.5",
"@typescript-eslint/eslint-plugin": "^6.7.5",
"@typescript-eslint/parser": "^6.7.5",
"@vitest/coverage-v8": "^0.34.6",
"aws-sdk-client-mock": "^3.0.0",
"conventional-changelog-conventionalcommits": "^7.0.2",
"eslint": "^8.51.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-plugin-chai-expect": "^3.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jest": "^27.4.2",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.33.2",
"husky": "^8.0.3",
"lint-staged": "^15.0.1",
"typescript": "^5.2.2",
"vitest": "^0.34.6"
},
"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"
}
}