smarthbs/package.json

62 lines
1.5 KiB
JSON
Raw Normal View History

2017-02-19 03:12:17 +00:00
{
2023-07-10 00:56:17 +00:00
"name": "@push.rocks/smarthbs",
2023-06-24 22:40:42 +00:00
"version": "3.0.3",
"private": false,
2024-04-14 15:41:26 +00:00
"description": "A library that enhances handlebars with better file system support, templates compilation, and partials registration.",
2022-07-24 13:30:19 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
"type": "module",
2017-02-19 03:12:17 +00:00
"scripts": {
"test": "(tstest test/)",
2022-07-24 13:30:19 +00:00
"build": "(tsbuild --allowimplicitany)"
2017-02-19 03:12:17 +00:00
},
"repository": {
"type": "git",
2024-05-29 12:13:32 +00:00
"url": "https://code.foss.global/push.rocks/smarthbs.git"
2017-02-19 03:12:17 +00:00
},
"keywords": [
2024-04-14 15:41:26 +00:00
"handlebars",
"template engine",
"file system",
"partials",
"template compilation",
"smartfile integration",
"template variables analysis",
"code generation",
"dynamic content"
2017-02-19 03:12:17 +00:00
],
"author": "Lossless GmbH",
"license": "MIT",
"bugs": {
"url": "https://gitlab.com/pkunz/smarthbs/issues"
},
2024-05-29 12:13:32 +00:00
"homepage": "https://code.foss.global/push.rocks/smarthbs",
2017-02-19 03:12:17 +00:00
"dependencies": {
2023-06-24 22:40:41 +00:00
"@pushrocks/smartfile": "^10.0.17",
2022-07-24 13:30:19 +00:00
"@pushrocks/smartpath": "^5.0.5",
2023-06-24 22:40:41 +00:00
"@pushrocks/smartpromise": "^4.0.2",
2023-06-24 22:29:02 +00:00
"handlebars": "^4.7.7"
2017-02-19 03:12:17 +00:00
},
"devDependencies": {
2023-06-24 22:40:41 +00:00
"@gitzone/tsbuild": "^2.1.66",
"@gitzone/tsrun": "^1.2.42",
2022-07-24 13:30:19 +00:00
"@gitzone/tstest": "^1.0.72",
2023-06-24 22:40:41 +00:00
"@pushrocks/tapbundle": "^5.0.8",
"@types/node": "^20.3.1"
2019-09-10 16:02:42 +00:00
},
"files": [
2022-07-24 13:30:19 +00:00
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
2019-09-10 16:02:42 +00:00
"cli.js",
"npmextra.json",
"readme.md"
2022-07-24 13:30:19 +00:00
],
"browserslist": [
"last 1 chrome versions"
2019-09-10 16:02:42 +00:00
]
2023-07-10 00:56:17 +00:00
}