-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
68 lines (68 loc) · 1.82 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
65
66
67
68
{
"name": "sfcc-schemas",
"version": "1.5.0",
"description": "Salesforce Commerce Cloud import and export schemas validator",
"keywords": [
"Salesforce Commerce Cloud",
"Demandware"
],
"repository": {
"type": "git",
"url": "https://github.com/openmindlab/sfcc-schemas.git"
},
"bugs": {
"url": "https://github.com/openmindlab/sfcc-schemas/issues"
},
"main": "sfcc-schemas.js",
"license": "MIT",
"author": {
"name": "Fabrizio Giustina"
},
"engines": {
"node": ">=16.0.0"
},
"bin": {
"sfcc-schemas-validate": "dist/validate.js",
"sfcc-schemas-xsdfy": "dist/xsdfy.js",
"sfcc-schemas-metacheatsheet": "dist/metacheatsheet.js"
},
"scripts": {
"build": "tsc",
"postversion": "git push && git push --tags",
"prepare": "npm run build"
},
"dependencies": {
"cli-progress": "^3.11.2",
"colorize-template": "^1.0.0",
"es6-promise-pool": "2.5.0",
"glob": "^8.0.3",
"glob-promise": "^5.0.0",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"picocolors": "^1.0.0",
"promise-timeout": "1.3.0",
"recursive-readdir": "2.2.2",
"xml2js": "0.4.23",
"xsd-schema-validator": "^0.7.0",
"yargs": "^17.5.1"
},
"devDependencies": {
"@types/cli-progress": "^3.11.0",
"@types/eslint": "^8.4.6",
"@types/eslint-config-prettier": "6.11.0",
"@types/jest": "^28.1.7",
"@types/lodash": "^4.14.184",
"@types/promise-timeout": "1.3.0",
"@types/recursive-readdir": "^2.2.1",
"@types/xsd-schema-validator": "0.5.4",
"eslint": "^8.22.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.8.7",
"eslint-plugin-mocha": "^10.1.0",
"jest": "^28.1.3",
"prettier-eslint": "^15.0.1",
"typescript": "^4.7.4"
}
}