wip-backup-manager
Version:
This utility enables backup & restore of Kentico Kontent projects
59 lines (58 loc) • 1.96 kB
JSON
{
"name": "wip-backup-manager",
"version": "0.0.9",
"description": "This utility enables backup & restore of Kentico Kontent projects",
"preferGlobal": true,
"bin": {
"kbm": "./_commonjs/src/cli/app.js"
},
"repository": {
"type": "git",
"url": "https://github.com/Enngage/kontent-backup-manager"
},
"author": "richard sustek",
"main": "./_commonjs/src/app.js",
"directories": {},
"scripts": {
"release": "standard-version",
"tsc-local": "./node_modules/.bin/tsc",
"ts-node-local": "./node_modules/.bin/ts-node",
"prepublishOnly": "npm run ts-lint:check && npm run build:all",
"publish:beta": "npm publish --tag=next",
"build:commonjs": "npm run tsc-local -- -m commonjs --outDir _commonjs",
"build:all": "npm run build:commonjs",
"test:all": "npm run build:all",
"test:backup": "npm run build:commonjs && cd output && node ../_commonjs/src/cli/app --config=backup-config.json",
"test:clean": "npm run build:commonjs && cd output && node ../_commonjs/src/cli/app --config=clean-config.json",
"test:restore": "npm run build:commonjs && cd output && node ../_commonjs/src/cli/app --config=restore-config.json",
"ts-lint-local": "./node_modules/.bin/tslint",
"ts-lint:fix": "npm run ts-lint:check -- --fix",
"ts-lint:check": "npm run ts-lint-local -- --project ./tsconfig.json"
},
"keywords": [
"Kentico",
"Kontent",
"Kentico Kontent",
"Kontent backup manager",
"Kontent restore project",
"Kontent backup project",
"Kontent import"
],
"license": "MIT",
"dependencies": {
"@kentico/kontent-management": "0.3.18",
"jszip": "3.3.0",
"rxjs": "6.5.5",
"yargs": "15.3.1",
"flatted": "2.0.2"
},
"devDependencies": {
"@types/jszip": "3.1.7",
"@types/node": "13.11.0",
"@types/yargs": "15.0.4",
"standard-version": "7.1.0",
"ts-node": "8.8.2",
"tslint": "6.1.1",
"typescript": "3.8.3"
}
}