mirror of
https://github.com/lucaspalomodevelop/JSSTE.git
synced 2026-03-12 23:17:22 +00:00
47 lines
953 B
JSON
47 lines
953 B
JSON
{
|
|
"name": "jsste",
|
|
"version": "1.2.3",
|
|
"description": "A Javascript Static Template Engine",
|
|
"main": "src/index.js",
|
|
"directories": {
|
|
"test": "test"
|
|
},
|
|
"bin": {
|
|
"jsste": "./src/cmd.js"
|
|
},
|
|
"files": [
|
|
"src",
|
|
"package.json",
|
|
"README.md",
|
|
"LICENSE"
|
|
],
|
|
"scripts": {
|
|
"test": "mocha ./test/test.test.js",
|
|
"publish": "npm publish --access publish",
|
|
"cmd": "node ./src/cmd.js"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/lucaspalomodevelop/JSSTE.git"
|
|
},
|
|
"keywords": [
|
|
"engine",
|
|
"templateengine",
|
|
"jsste"
|
|
],
|
|
"author": "Lucas Palomo Lauterbach",
|
|
"license": "GPL",
|
|
"bugs": {
|
|
"url": "https://github.com/lucaspalomodevelop/JSSTE/issues"
|
|
},
|
|
"homepage": "https://github.com/lucaspalomodevelop/JSSTE#readme",
|
|
"dependencies": {},
|
|
"engines": {
|
|
"node": ">= 0.10.0"
|
|
},
|
|
"devDependencies": {
|
|
"chai": "^4.3.4",
|
|
"mocha": "^10.1.0"
|
|
}
|
|
}
|