-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.29 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.29 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
{
"name": "@netresearch/node-magento-eqp",
"version": "5.0.0",
"description": "Simple API wrapper around the Magento Marketplace EQP API",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/netresearch/node-magento-eqp.git"
},
"types": "dist/index.d.ts",
"author": "DevMiner <devminer@devminer.xyz>",
"license": "MIT",
"scripts": {
"build": "yarn build:lib && yarn build:docs",
"build:lib": "tsc -p tsconfig.build.json",
"build:lib:dev": "tsc -w",
"build:docs": "typedoc --out docs --entryPoints src/index.ts",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"lint": "eslint src",
"prepack": "yarn build:lib",
"prepare": "husky"
},
"devDependencies": {
"@eslint/js": "^10.0.0",
"@types/node": "^24.0.0",
"@vitest/coverage-v8": "^4.0.18",
"eslint": "^10.0.0",
"eslint-config-prettier": "^10.0.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.0.0",
"typedoc": "^0.28.0",
"typescript": "^5.1.6",
"typescript-eslint": "^8.0.0",
"vitest": "^4.0.18"
},
"dependencies": {
"tslib": "^2.6.0"
},
"lint-staged": {
"*.{ts,mts,cts,tsx}": "eslint",
"*.{ts,mts,cts,tsx,js,mjs,json,md,yml,yaml}": "prettier --write"
},
"engines": {
"node": ">=20"
},
"resolutions": {
"minimatch": ">=9.0.7"
}
}