UNPKG

file-cms

Version:

File based Content Management System, easy to use with content stored in native file system

71 lines (70 loc) 1.82 kB
{ "name": "file-cms", "version": "0.0.8", "description": "File based Content Management System, easy to use with content stored in native file system", "main": "dist/cjs/index.js", "module": "dist/index.js", "typings": "dist/index.d.ts", "files": [ "dist" ], "scripts": { "clean": "npx rimraf dist", "prettier": "npx prettier --check --ignore-unknown --no-error-on-unmatched-pattern ./**/*", "eslint": "npx eslint ./ --no-error-on-unmatched-pattern", "tsc": "npx tsc", "tsc-cjs": "npx tsc --project tsconfig.cjs.json", "build": "npm run prettier && npm run eslint && npm run clean && npm run tsc && npm run tsc-cjs", "pretest": "npm run build", "test": "npx jest", "prepack": "npm test", "postversion": "git push --follow-tags" }, "repository": { "type": "git", "url": "git+https://github.com/sodaru/file-cms.git" }, "keywords": [ "cms", "headless-cms", "content-management-system", "fs", "fs-cms", "article", "blog" ], "author": "Raghavendra K R <raghavendra@sodaru.com>", "license": "MIT", "bugs": { "url": "https://github.com/sodaru/file-cms/issues" }, "homepage": "https://github.com/sodaru/file-cms#readme", "devDependencies": { "@types/jest": "^29.5.12", "@types/node": "^18.7.14", "eslint-config-sodaru": "^1.0.1", "jest": "^29.7.0", "prettier-config-sodaru": "^1.0.0", "rimraf": "^3.0.2", "ts-jest": "^29.2.5", "tslib": "^2.7.0", "typescript": "^4.9.5" }, "peerDependencies": { "tslib": "^2.4.0" }, "peerDependenciesMeta": { "tslib": { "optional": true } }, "eslintConfig": { "extends": [ "eslint-config-sodaru" ] }, "prettier": "prettier-config-sodaru", "dependencies": { "yaml": "^2.5.1" } }