-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.54 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.54 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
{
"name": "shipthisapi-js",
"version": "2.2.1",
"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.18.0",
"tslib": "~2.8.1"
},
"overrides": {
"handlebars": "^4.7.9",
"flatted": "^3.4.2",
"fast-uri": "^3.1.5",
"tinyglobby": {
"picomatch": "^4.0.4"
},
"anymatch": {
"picomatch": "^2.3.2"
},
"micromatch": {
"picomatch": "^2.3.2"
},
"jest-util": {
"picomatch": "^2.3.2"
},
"form-data": "^4.0.6",
"js-yaml": "^3.15.1",
"@babel/core": "^7.29.6",
"minimatch@^10": {
"brace-expansion": "^5.0.7"
}
},
"volta": {
"node": "20.11.1"
}
}