-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.04 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
{
"name": "@cds-au/holder-sdk",
"version": "2.1.0",
"description": "NodeJS middleware to handle error generation in line with Australian Consumer Data Standards technical specifications",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"images"
],
"scripts": {
"build": "tsc && cp -r ./src/data ./dist",
"test": "jest --coverage",
"test:watch": "jest --watch",
"dev": "nodemon"
},
"keywords": [
"xp-solutions",
"nodejs",
"typescript"
],
"author": "Tomas Schier",
"license": "ISC",
"devDependencies": {
"@types/consumer-data-standards": "^7.1.4",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/uuid": "^8.3.1",
"jest": "^29.7.0",
"nodemon": "^3.1.4",
"nyc": "^15.1.0",
"supertest": "^6.1.6",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tslint": "^6.1.3",
"typescript": "^5.5.4"
},
"dependencies": {
"express": "^4.19.2",
"jwt-decode": "^3.1.2",
"uuid": "^8.3.2",
"zlib": "^1.0.5"
}
}