mirror of
https://github.com/lucaspalomodevelop/JSSTE.git
synced 2026-03-13 07:19:37 +00:00
45 lines
937 B
JSON
45 lines
937 B
JSON
{
|
|
"name": "jsste",
|
|
"version": "1.0.0",
|
|
"description": "A Javascript Static Template Emgine",
|
|
"main": "dist/index.js",
|
|
"directories": {
|
|
"test": "test"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"package.json",
|
|
"README.md",
|
|
"LICENSE"
|
|
],
|
|
"scripts": {
|
|
"test": "mocha",
|
|
"build": "gulp build",
|
|
"publish": "npm run build && npm publish --access publish"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/lucaspalomodevelop/JSSTE.git"
|
|
},
|
|
"keywords": [
|
|
"engine",
|
|
"templateengine"
|
|
],
|
|
"author": "lucas palomo",
|
|
"license": "ISC",
|
|
"bugs": {
|
|
"url": "https://github.com/lucaspalomodevelop/JSSTE/issues"
|
|
},
|
|
"homepage": "https://github.com/lucaspalomodevelop/JSSTE#readme",
|
|
"dependencies": {
|
|
"jsdom": "^16.5.3"
|
|
},
|
|
"devDependencies": {
|
|
"gulp": "^4.0.2",
|
|
"gulp-minify": "^3.1.0",
|
|
"assert": "^2.0.0",
|
|
"chai": "^4.3.4",
|
|
"mocha": "^8.4.0"
|
|
}
|
|
}
|