UNPKG

nobup

Version:
97 lines (96 loc) 2.41 kB
{ "name": "nobup", "version": "0.1.0-alpha.14", "description": "Backup Notion to git", "keywords": [ "notion", "git", "github", "backup", "snapshot" ], "repository": "hosso/nobup", "license": "MIT", "author": "E. Hosso", "bin": { "nobup": "bin/nobup" }, "files": [ "dist" ], "scripts": { "start": "ts-node --transpile-only src/index.ts", "debug": "node --inspect -r ts-node/register/transpile-only src/index.ts", "clean": "rm -rf dist", "build": "yarn clean && tsc -p tsconfig.build.json", "prepublishOnly": "yarn build", "lint": "run-p lint:*", "lint:tsc": "tsc --noEmit", "lint:eslint": "eslint --ext .ts,.js --max-warnings 0 .", "lint:prettier": "prettier . --check", "fix": "run-s fix:*", "fix:eslint": "yarn lint:eslint --fix", "fix:prettier": "yarn lint:prettier --write", "test": "jest --testPathIgnorePatterns e2e", "test:e2e": "yarn build && jest e2e" }, "husky": { "hooks": { "pre-commit": "lint-staged" } }, "lint-staged": { "*.{ts,js}": [ "eslint --fix --max-warnings 0" ], "*.{json,yml,md}": [ "prettier --write" ], "package.json": [ "sort-package-json" ] }, "dependencies": { "commander": "^8.2.0", "configstore": "5", "cookie": "^0.4.1", "download": "^8.0.0", "git-ss": "^0.1.6", "globby": "11", "inquirer": "^8.1.5", "listr": "^0.14.3", "node-fetch": "2", "unzip-stream": "^0.3.1" }, "devDependencies": { "@types/configstore": "5", "@types/cookie": "^0.4.1", "@types/download": "^8.0.1", "@types/fs-extra": "^9.0.12", "@types/inquirer": "^8.1.1", "@types/jest": "^27.0.1", "@types/listr": "^0.14.4", "@types/node": "^16.9.1", "@types/node-fetch": "2", "@types/unzip-stream": "^0.3.1", "@typescript-eslint/eslint-plugin": "^4.31.0", "@typescript-eslint/parser": "^4.31.0", "eslint": "^7.32.0", "eslint-config-prettier": "^8.3.0", "eslint-plugin-simple-import-sort": "^7.0.0", "execa": "^5.1.1", "fs-extra": "^10.0.0", "husky": "3", "jest": "^27.1.1", "lint-staged": "^11.1.2", "npm-run-all": "^4.1.5", "prettier": "^2.4.0", "sort-package-json": "^1.51.0", "ts-jest": "^27.0.5", "ts-node": "^10.2.1", "typescript": "^4.4.3" }, "engines": { "node": ">=14" } }