-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.7 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.7 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
{
"name": "@hyperproof/integration-sdk",
"version": "6.0.0",
"description": "Hyperproof Integration SDK",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Hyperproof/integration-sdk.git"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc && copyfiles -u 1 \"src/**/*.d.ts\" lib",
"lint": "eslint 'src/**/*.{js,ts}' --max-warnings 0",
"test": "jest --config=../../packages/jest-config/lib/jest.config.js"
},
"engines": {
"node": "^22.0.0"
},
"dependencies": {
"@hyperproof/hypersync-models": "6.0.0",
"@js-joda/core": "3.2.0",
"@pollyjs/adapter-node-http": "6.0.6",
"@pollyjs/core": "6.0.6",
"@pollyjs/persister-fs": "6.0.6",
"abort-controller": "3.0.0",
"body-parser": "1.20.3",
"express": "4.21.2",
"form-data": "3.0.4",
"html-entities": "2.5.2",
"http-errors": "2.0.0",
"http-status-codes": "2.3.0",
"jsonwebtoken": "9.0.2",
"mime": "3.0.0",
"mock-http": "1.1.0",
"node-fetch": "2.7.0",
"query-string": "7.1.3",
"superagent": "10.1.0",
"uuid": "10.0.0",
"xss": "1.0.15"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/jest": "^29.5.4",
"@types/node-fetch": "^2.6.13",
"@types/superagent": "^8.1.9",
"@types/uuid": "^8.3.1",
"@typescript-eslint/eslint-plugin": "8.7.0",
"@typescript-eslint/parser": "8.7.0",
"copyfiles": "^2.4.1",
"eslint-config-prettier": "^8.5.0",
"eslint": "8.57.1",
"jest-junit": "^12.2.0",
"jest": "^29.6.4",
"prettier": "^2.6.1",
"ts-jest": "^29.1.1",
"ts-node": "8.0.2",
"typescript": "5.5.4"
},
"files": [
"lib",
"package.json"
]
}