-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.68 KB
/
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
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
{
"name": "@allegro/convert-description",
"description": "A JavaScript library to convert HTML-rich offer & product descriptions into a format accepted by Allegro Rest API.",
"main": "dist/umd.js",
"bin": {
"convert-description": "bin/index.js"
},
"scripts": {
"build": "webpack --mode production",
"clean": "rm -rf dist/*",
"dev": "webpack --mode development",
"test": "mocha",
"lint": "eslint",
"lint:fix": "npm run lint -- --fix",
"watch": "webpack --watch --config webpack.config.js --progress --color --mode development",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/allegro/convert-description.git"
},
"engines": {
"node": ">=20",
"npm": ">=10"
},
"devDependencies": {
"@babel/core": "7.24.9",
"@babel/preset-env": "7.24.8",
"@babel/register": "7.24.6",
"@eslint/js": "9.7.0",
"babel-loader": "9.1.3",
"chai": "4.4.1",
"chai-as-promised": "7.1.2",
"eslint": "9.7.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-markdown": "5.1.0",
"eslint-plugin-prettier": "5.2.1",
"globals": "15.8.0",
"husky": "9.1.1",
"jsdom-global": "3.0.2",
"lint-staged": "15.2.7",
"markdownlint": "0.34.0",
"markdownlint-cli": "0.41.0",
"mocha": "10.6.0",
"mocha-testdata": "1.2.0",
"pretty": "2.0.0",
"sanitize-html": "2.13.1",
"sinon": "18.0.0",
"sinon-chai": "3.7.0",
"webpack": "5.94.0",
"webpack-cli": "5.1.4"
},
"files": [
"dist/"
],
"lint-staged": {
"*.{js,md}": "eslint --cache --fix",
"*.md": "markdownlint --fix"
},
"dependencies": {
"deepmerge": "4.3.1",
"jsdom": "25.0.1"
}
}