JSSTE/package.json
2022-11-18 16:37:10 +01:00

44 lines
911 B
JSON

{
"name": "jsste",
"version": "1.2.3",
"description": "A Javascript Static Template Engine",
"main": "src/index.js",
"directories": {
"test": "test"
},
"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"
}
}