UNPKG

jsonblade

Version:

A powerful and modular JSON template engine with extensible filters

83 lines (82 loc) 2.08 kB
{ "name": "jsonblade", "version": "1.0.4", "description": "A powerful and modular JSON template engine with extensible filters", "main": "dist/index.js", "types": "dist/index.d.ts", "module": "dist/index.js", "exports": { ".": { "require": "./dist/index.js", "import": "./dist/index.js", "types": "./dist/index.d.ts" }, "./core": { "require": "./dist/core.js", "import": "./dist/core.js", "types": "./dist/core.d.ts" }, "./package.json": "./package.json" }, "scripts": { "build": "npm run clean && tsc", "build:watch": "tsc --watch", "test": "jest", "test:watch": "jest --watch", "test:coverage": "jest --coverage", "lint": "tsc --noEmit", "lint:fix": "tsc --noEmit", "prepublishOnly": "npm run build && npm test", "postbuild": "npm run test", "clean": "rimraf dist", "docs": "echo 'See README.md for documentation'", "check-package": "npm pack --dry-run", "size": "npm run build && size-limit" }, "keywords": [ "json", "template", "templating", "engine", "filter", "typescript", "blade", "mustache", "handlebars", "data-transformation", "conditional-templating", "loops", "modular", "extensible" ], "engines": { "node": ">=14.0.0" }, "author": "Anthony Jeamme <anthony@synesia.ai> (https://synesia.ai)", "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/Synesia/jsonblade.git" }, "bugs": { "url": "https://github.com/Synesia/jsonblade/issues" }, "homepage": "https://github.com/Synesia/jsonblade#readme", "files": [ "dist/*.js", "dist/*.d.ts", "dist/filters/", "!dist/demo.*", "README.md", "LICENSE" ], "devDependencies": { "@types/jest": "^30.0.0", "@types/node": "^24.0.14", "jest": "^30.0.4", "rimraf": "^6.0.1", "ts-jest": "^29.4.0", "ts-node": "^10.9.2", "typescript": "^5.8.3" } }