-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1011 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 1011 Bytes
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
{
"name": "@devboostsolution/api-client",
"version": "1.0.6",
"description": "This is an axios extension that makes it easier for developers to call the API through the application",
"author": "LongVQ",
"repository": {
"type": "git",
"url": "git+https://github.com/DevBoostSolutions/api-client.git"
},
"main": "build/index.d.ts",
"scripts": {
"build:watch": "npx tsc -w -p ./tsconfig.build.json",
"build": "npx tsc -p ./tsconfig.build.json",
"clean": "rm -rf build && rm -rf coverage && rm -rf node_modules",
"test:watch": "jest --watch",
"test": "jest --config ./test/jest.json --verbose --runInBand",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\""
},
"release": {
"branch": "main"
},
"license": "ISC",
"dependencies": {
"axios": "^1.7.2"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"jest": "^29.7.0",
"nock": "^13.5.4",
"prettier": "^3.3.2",
"typescript": "^5.5.3",
"ts-jest": "^29.1.5"
}
}