-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.15 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.15 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
{
"name": "shipthisapi-js",
"version": "2.1.0",
"description": "Wrapper for shipthis api",
"engines": {
"node": ">=18"
},
"type": "module",
"devDependencies": {
"@types/jest": "~29.5",
"@types/node": "~22.15",
"@typescript-eslint/eslint-plugin": "^8.56.0",
"@typescript-eslint/parser": "^8.56.0",
"eslint": "^10.0.0",
"eslint-config-prettier": "~10.1",
"eslint-plugin-jest": "^29.15.0",
"jest": "^29.7.0",
"prettier": "^3.5.3",
"rimraf": "~6.0",
"ts-jest": "^29.3.4",
"tsutils": "~3.21",
"typescript": "^5.8.3"
},
"scripts": {
"start": "node dist/shipthisapi-js/main.js",
"clean": "rimraf coverage build tmp",
"prebuild": "node ./scripts/pre-build",
"build": "tsc -p tsconfig.prod.json",
"postbuild": "node ./scripts/pre-publish",
"build:watch": "tsc -w -p tsconfig.prod.json",
"test": "jest --coverage",
"test:watch": "jest --watch"
},
"author": "Mayur Rawte",
"license": "Apache-2.0",
"dependencies": {
"axios": "^1.9.0",
"tslib": "~2.8.1"
},
"overrides": {
"ajv": "^8.18.0",
"minimatch": "^10.2.2"
},
"volta": {
"node": "20.11.1"
}
}