node-amy
Version:
A HTML template framework without client-side JavaScript dependencies
64 lines (63 loc) • 1.79 kB
JSON
{
"name": "node-amy",
"version": "3.7.0",
"description": "A HTML template framework without client-side JavaScript dependencies",
"main": "lib/amy.js",
"bin": {
"node-amy": "bin/cli"
},
"files": [
"bin",
"lib"
],
"scripts": {
"setup": "npm run release-patch",
"test-watch": "watch \"npm run test\" lib test/spec",
"test": "mocha test/spec/**/*.spec.js --check-leaks",
"coverage": "nyc npm run test",
"docs": "jsdoc lib/ --destination docs --configure .jsdoc.json",
"preversion": "npm run test",
"version": "npm run changelog && git add -A CHANGELOG.md",
"postversion": "git push origin master && git push origin master --tags",
"release-major": "npm version major -m \"chore(release): v%s\"",
"release-minor": "npm version minor -m \"chore(release): v%s\"",
"release-patch": "npm version patch -m \"chore(release): v%s\"",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r"
},
"bugs": {
"url": "https://github.com/stfsy/node-amy/issues"
},
"homepage": "https://github.com/stfsy/node-amy#readme",
"repository": {
"type": "git",
"url": "https://github.com/stfsy/node-amy"
},
"keywords": [
"templates",
"html-templates",
"html",
"server",
"server-side",
"render"
],
"author": "Stefan Pfaffel",
"license": "MIT",
"devDependencies": {
"benchmark": "^2.1.4",
"chai": "^4.3.4",
"chai-spies": "^1.0.0",
"conventional-changelog-cli": "^2.1.1",
"fs-promise": "^2.0.3",
"jsdoc": "^3.6.7",
"merge": "^2.1.1",
"minami": "^1.1.1",
"mocha": "^9.0.2",
"nyc": "^15.1.0",
"watch": "^0.13.0"
},
"dependencies": {
"commander": "^7.2.0",
"globby": "^11.0.4",
"node-html-light": "^2.12.0"
}
}