-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.46 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
{
"name": "@aligent/microservice-util-lib",
"version": "1.0.0",
"description": "A set of utility functions for Aligent Microservices",
"main": "dist/index.js",
"scripts": {
"build": "tsc && npm run docs",
"lint": "eslint src/*.ts src/**/*.ts",
"lint:fix": "eslint --fix src/*.ts src/**/*.ts",
"test": "npm run lint && npm run test:types && npm run test:jest",
"test:jest": "jest src/",
"test:types": "tsc --noEmit",
"docs": "typedoc --readme none --githubPages false --plugin typedoc-plugin-markdown --entryDocument modules.md --namedAnchors true --out docs src/index.ts"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/aligent/microservice-util-lib.git"
},
"author": "Aligent",
"license": "ISC",
"devDependencies": {
"@types/jest": "^29.2.4",
"@types/lodash": "^4.14.191",
"@types/node": "^18.11.17",
"@types/object-hash": "^3.0.2",
"@typescript-eslint/eslint-plugin": "^5.46.1",
"@typescript-eslint/parser": "^5.46.1",
"aws-sdk-client-mock": "^2.1.1",
"aws-sdk-client-mock-jest": "^2.1.1",
"eslint": "^8.30.0",
"jest": "^29.3.1",
"ts-jest": "^29.0.3",
"typedoc": "^0.23.23",
"typedoc-plugin-markdown": "^3.14.0",
"typescript": "^4.9.4"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.332.0",
"@aws-sdk/client-ssm": "^3.332.0",
"axios": "^1.2.1",
"lodash": "^4.17.21",
"object-hash": "^3.0.0"
},
"files": [
"dist",
"docs"
]
}