mirror of
https://github.com/CryptKeeperZK/ejs.git
synced 2026-01-08 15:13:50 -05:00
Some minor changes regarding `var compile` is needed to make JSDoc recognize the function.
42 lines
1.0 KiB
JSON
42 lines
1.0 KiB
JSON
{
|
|
"name": "ejs",
|
|
"description": "Embedded JavaScript templates",
|
|
"keywords": [
|
|
"template",
|
|
"engine",
|
|
"ejs"
|
|
],
|
|
"version": "2.2.3",
|
|
"author": "Matthew Eernisse <mde@fleegix.org> (http://fleegix.org)",
|
|
"contributors": [
|
|
"Timothy Gu <timothygu99@gmail.com> (https://timothygu.github.io)"
|
|
],
|
|
"license": "Apache-2.0",
|
|
"main": "./lib/ejs.js",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git://github.com/mde/ejs.git"
|
|
},
|
|
"bugs": "https://github.com/mde/ejs/issues",
|
|
"homepage": "https://github.com/mde/ejs",
|
|
"dependencies": {},
|
|
"devDependencies": {
|
|
"browserify": "^8.0.3",
|
|
"istanbul": "~0.3.5",
|
|
"jake": "^8.0.0",
|
|
"jsdoc": "^3.3.0-beta1",
|
|
"mocha": "^2.1.0",
|
|
"rimraf": "^2.2.8",
|
|
"uglify-js": "^2.4.16"
|
|
},
|
|
"engines": {
|
|
"node": ">=0.10.0"
|
|
},
|
|
"scripts": {
|
|
"test": "mocha",
|
|
"coverage": "istanbul cover node_modules/mocha/bin/_mocha",
|
|
"doc": "rimraf out && jsdoc -c jsdoc.json lib/*",
|
|
"devdoc": "rimraf out && jsdoc -p -c jsdoc.json lib/*"
|
|
}
|
|
}
|