UNPKG

motionlink-cli

Version:

Making it easy to use Notion as a Content Management system for personal websites, portfolios, blogs, business homepages, and other kinds of static websites.

81 lines (80 loc) 2.37 kB
{ "name": "motionlink-cli", "version": "0.7.2", "description": "Making it easy to use Notion as a Content Management system for personal websites, portfolios, blogs, business homepages, and other kinds of static websites.", "main": "lib/main.js", "types": "lib/main.d.ts", "scripts": { "test": "cross-env TS_NODE_PROJECT=\"tsconfig.testing.json\" mocha -r ts-node/register test/setup.ts test/**/*.ts", "build": "tsc", "format": "prettier --write \"*/**/*.tsx\"", "lint": "tslint -p tsconfig.json", "prepare": "npm run build", "prepublishOnly": "npm test && npm run lint", "preversion": "npm run lint", "version": "npm run format && git add -A src", "postversion": "git push && git push --tags", "prebuild": "npm run clean", "clean": "rimraf lib/", "publishLatest": "npm publish", "publishNext": "npm publish --tag next" }, "repository": { "type": "git", "url": "https://github.com/oreal-solutions/motionlink-cli" }, "keywords": [ "cms", "portfolio", "jamstack", "notion-api", "notion-blog" ], "author": "Oreal Solutions", "license": "MIT", "bugs": { "url": "https://github.com/oreal-solutions/motionlink-cli/issues" }, "homepage": "https://github.com/oreal-solutions/motionlink-cli#readme", "files": [ "lib/**/*", "LICENSE" ], "bin": { "motionlink": "./lib/main.js" }, "devDependencies": { "@types/chai": "^4.2.22", "@types/deep-equal-in-any-order": "^1.0.1", "@types/express": "^4.17.17", "@types/mocha": "^9.0.0", "@types/mustache": "^4.1.2", "@types/prompt-sync": "^4.2.0", "@types/request": "^2.48.7", "@types/uuid": "^8.3.3", "chai": "^4.3.4", "cross-env": "^7.0.3", "deep-equal-in-any-order": "^1.1.15", "mocha": "^9.1.2", "prettier": "^2.4.1", "ts-node": "^10.2.1", "tslint": "^6.1.3", "tslint-config-prettier": "^1.18.0", "typescript": "^4.4.3" }, "dependencies": { "@notionhq/client": "^1.0.4", "@types/openurl": "^1.0.0", "axios": "^0.23.0", "express": "^4.18.2", "get-relative-path": "^1.0.2", "mustache": "^4.2.0", "openurl": "github:oreal-solutions/openurl", "prompt-sync": "^4.2.0", "request": "^2.88.2", "rimraf": "^3.0.2", "save": "^2.4.0", "simple-git": "^3.19.1", "uuid": "^8.3.2" } }