-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.52 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
{
"name": "sitecore-cdp-serializer",
"version": "0.2.1",
"description": "A Sitecore CDP/Personalize Serialization tool to abstract the APIs related to Tenant asset management and automated deployments from Source Control and/or physical files",
"type": "module",
"exports": "./lib/index.js",
"scripts": {
"build": "tsc -p .",
"build:local": "npm run build && npm link --force",
"start": "nodemon --watch 'src/**/*.ts' --exec 'ts-node' ./src/bin/index.ts",
"start:windows": "nodemon --watch 'src/**/*.ts' --exec \"npx ts-node\" ./src/bin/index.ts authenticate",
"test": "echo \"Error: no test specified\" && exit 1"
},
"bin": {
"sitecore-cdp-serializer": "./lib/bin/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dylanyoung-dev/sitecore-cdp-serializer.git"
},
"engines": {
"node": ">=16.17",
"npm": ">=8.15.0"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/dylanyoung-dev/sitecore-cdp-serializer/issues"
},
"homepage": "https://github.com/dylanyoung-dev/sitecore-cdp-serializer#readme",
"dependencies": {
"chalk": "4.1.2",
"commander": "^9.4.0",
"configstore": "6.0.0",
"node-fetch": "3.2.10",
"json-diff": "0.9.0",
"js-yaml": "4.1.0"
},
"devDependencies": {
"@types/node": "18.6.3",
"@types/configstore": "6.0.0",
"@types/json-diff": "0.7.0",
"@types/js-yaml": "4.0.5",
"nodemon": "^2.0.19",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
}
}