-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.5 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.5 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
65
66
67
68
69
{
"name": "@hexlabs/axios-hexlabs-caller",
"sideEfects": false,
"version": "1.0.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"license": "MIT",
"files": [
"dist"
],
"exclude": [
"node_modules"
],
"scripts": {
"build": "tsc --project tsconfig.json",
"test": "jest --ci --runInBand --coverage --reporters=default --passWithNoTests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hexlabsio/axios-hexlabs-caller"
},
"author": "hexlabs",
"bugs": {
"url": "https://github.com/hexlabsio/axios-hexlabs-caller"
},
"homepage": "https://github.com/hexlabsio/axios-hexlabs-caller#readme",
"jest": {
"transform": {
".(ts)": [
"ts-jest",
{
"useESM": true
}
]
},
"preset": "ts-jest/presets/default-esm",
"moduleNameMapper": {
"^(\\.{1,2}/.*)\\.js$": "$1"
},
"reporters": [
"default",
"jest-junit"
],
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"js"
]
},
"dependencies": {
"axios": "^1.6.0",
"husky": "^8.0.3",
"md5": "^2.3.0",
"qs": "^6.11.2",
"uuid": "^9.0.1"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/jest": "^29.5.2",
"@types/md5": "^2.3.4",
"@types/node": "^20.17.10",
"@types/qs": "^6.9.9",
"@types/uuid": "^9.0.6",
"jest": "^29.5.0",
"ts-jest": "^29.1.1",
"typescript": "^5.7.2"
}
}