-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.8 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.8 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
{
"name": "sfcc-dts",
"version": "1.0.12",
"description": "",
"main": "dist/tsplugin.js",
"author": "openmindlab",
"license": "MIT",
"types": "./@types/index.d.ts",
"keywords": [
"Salesforce Commerce Cloud",
"Demandware",
"sfccs"
],
"repository": {
"type": "git",
"url": "git+https://github.com/openmindlab/sfcc-dts"
},
"dependencies": {
"axios": "0.27.2",
"cheerio": "^1.0.0-rc.3",
"cli-progress": "3.11.2",
"colorize-template": "1.0.0",
"comment-json": "4.2.3",
"json-merge-patch": "1.0.2",
"picocolors": "1.0.0",
"prettier": "2.7.1",
"prompts": "2.4.2",
"properties-reader": "2.2.0",
"xml2js": "0.5.0"
},
"devDependencies": {
"@types/cheerio": "0.22.31",
"@types/cli-progress": "3.11.0",
"@types/json-merge-patch": "0.0.8",
"@types/node": "18.7.9",
"@types/prettier": "2.7.0",
"@types/prompts": "2.0.14",
"@types/properties-reader": "2.1.1",
"@types/xml2js": "0.4.11",
"create-symlink": "1.0.0",
"ts-node": "10.9.1",
"typescript": "4.7.4"
},
"files": [
"dist/**/*",
"@types/**/*",
"api/**/*",
"media/**/*",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"build": "tsc",
"postversion": "git push && git push --tags",
"prepare": "npm run build",
"scrape": "node dist/scrape.js",
"generate": "node dist/generate.js",
"makepatch": "node dist/makepatch.js",
"sfcc-dts-setup": "node dist/setup.js",
"sfcc-dts-updateattrs": "node dist/updateattrs.js",
"sfcc-dts-generateconstants": "node dist/generateconstants.js"
},
"bin": {
"sfcc-dts-setup": "dist/setup.js",
"sfcc-dts-updateattrs": "dist/updateattrs.js",
"sfcc-dts-generateconstants": "dist/generateconstants.js"
}
}