-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.36 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.36 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "@prestashop-core/ws-client",
"version": "1.0.6",
"description": "A typescript WebServices client for PrestaShop",
"main": "./dist/index.js",
"types": "./index.d.ts",
"private": false,
"module": "./dist/index.mjs",
"files": [
"/dist",
"index.d.ts"
],
"exports": {
".": {
"types": "./index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.mjs"
},
"./package.json": "./package.json"
},
"scripts": {
"build": "pnpm run build:cjs && pnpm run build:esm",
"build:esm": "rollup --bundleConfigAsCjs --config ./rollup.config.js",
"build:cjs": "tsc -p ./tsconfig.cjs.json",
"test": "jest",
"format": "prettier --check 'src/**/*.ts'",
"lint": "eslint 'src/**/*.ts'",
"format:fix": "prettier --write 'src/**/*.ts'",
"lint:fix": "eslint 'src/**/*.ts' --fix",
"fix": "pnpm format:fix && pnpm lint:fix",
"example": "ts-node ./examples/test.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PrestaShop/ws-client.git"
},
"keywords": [
"testing",
"library",
"prestashop",
"webservices"
],
"author": "The PrestaShop team",
"license": "MIT",
"bugs": {
"url": "https://github.com/PrestaShop/ws-client/issues"
},
"homepage": "https://github.com/PrestaShop/ws-client#readme",
"engines": {
"node": ">=18",
"pnpm": ">=8"
},
"dependencies": {
"@xmldom/xmldom": "^0.8.10",
"axios": "^1.6.2",
"jsdom": "^23.0.1",
"xml2js": "^0.6.2",
"xml2js-cdata": "^0.0.2",
"xmlbuilder2": "^3.1.1"
},
"devDependencies": {
"@types/jsdom": "^21.1.6",
"@types/node": "^20.8.4",
"@types/xml2js": "^0.4.14",
"@typescript-eslint/eslint-plugin": "^6.7.5",
"eslint": "^8.51.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-deprecation": "^2.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-unicorn": "^48.0.1",
"jest": "^29.7.0",
"prettier": "^3.0.3",
"prettier-plugin-organize-imports": "^3.2.4",
"rimraf": "^5.0.5",
"ts-node": "^10.9.1",
"typescript": "^5.2.2",
"rollup": "^4.17.2",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-typescript": "^11.1.6"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}