-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
72 lines (72 loc) · 1.7 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
68
69
70
71
72
{
"name": "@fireblocks/ts-sdk",
"version": "7.0.0",
"description": "OpenAPI client for @fireblocks/ts-sdk",
"author": "Fireblocks SDK Generator",
"repository": {
"type": "git",
"url": "https://github.com/fireblocks/ts-sdk.git"
},
"keywords": [
"axios",
"typescript",
"openapi-client",
"openapi-generator",
"@fireblocks/ts-sdk"
],
"license": "MIT License",
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"scripts": {
"build": "tsc && npm run copy:package",
"copy:package": "cp package.json dist/",
"prepare": "npm run build",
"postversion": "if [ \"$SKIP_POSTVERSION\" != \"true\" ]; then git push && git push --tags; fi",
"test": "jest --coverage --passWithNoTests --runInBand --detectOpenHandles --forceExit",
"test:watch": "jest --watch",
"test:cov": "jest --coverage"
},
"dependencies": {
"jsonwebtoken": "^9.0.2",
"uuid": "8.3.2",
"platform": "1.3.6",
"axios": "^1.6.7"
},
"devDependencies": {
"@types/jsonwebtoken": "^9.0.2",
"@types/uuid": "^8.3.2",
"@types/platform": "^1.3.6",
"@types/node": "^12.11.5",
"@types/jest": "29.4.0",
"jest": "29.4.2",
"jest-junit": "^14.0.0",
"ts-jest": "29.0.5",
"typescript": "^4.0"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": ".",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "../coverage",
"testEnvironment": "node",
"reporters": [
"default",
"jest-junit"
],
"coverageReporters": [
"json",
"cobertura",
"clover",
"json-summary",
"text",
"lcov"
]
}
}