ejstmpl
Version:
A tiny template system based on EJS templating library
37 lines (36 loc) • 832 B
JSON
{
"name": "ejstmpl",
"version": "0.9.1",
"description": "A tiny template system based on EJS templating library",
"main": "dist/ejstmpl.js",
"scripts": {
"prebuild": "rm -rf dist",
"build": "tsc",
"postbuild": "rm -rf dist/tests/test.d.ts && copyfiles -V \"./tests/**/*.html\" ./dist",
"pretest": "npm run build",
"test": "node dist/tests/test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JCloudYu/ejstmpl.git"
},
"keywords": [
"Templating",
"EJS",
"ESJTpl"
],
"author": "JCloudYu",
"license": "ISC",
"bugs": {
"url": "https://github.com/JCloudYu/ejstmpl/issues"
},
"homepage": "https://github.com/JCloudYu/ejstmpl#readme",
"devDependencies": {
"@types/ejs": "^3.1.0",
"@types/node": "^16.11.6",
"copyfiles": "^2.4.1"
},
"dependencies": {
"ejs": "^3.1.6"
}
}