-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1009 Bytes
/
package.json
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
{
"name": "@netresearch/node-magento-eqp",
"version": "4.0.7",
"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 <[email protected]>",
"license": "MIT",
"scripts": {
"build": "yarn build:lib && yarn build:docs",
"build:lib": "tsc",
"build:lib:dev": "tsc -w",
"build:docs": "typedoc --out docs --entryPoints src/index.ts",
"lint": "eslint src --ext .ts",
"prepack": "yarn build:lib"
},
"devDependencies": {
"@types/node": "^22.0.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^9.8.0",
"eslint-config-prettier": "^9.0.0",
"prettier": "^3.0.0",
"ts-node": "^10.9.1",
"typedoc": "^0.26.5",
"typescript": "^5.1.6"
},
"dependencies": {
"axios": "1.7.7",
"tslib": "^2.6.0"
},
"engines": {
"node": ">=20"
}
}