smartmustache/package.json

57 lines
1.3 KiB
JSON
Raw Normal View History

2016-11-20 11:35:46 +00:00
{
2023-07-10 08:16:46 +00:00
"name": "@push.rocks/smartmustache",
2022-08-07 15:56:02 +00:00
"version": "3.0.2",
2024-04-14 16:01:23 +00:00
"description": "A library for creating and applying templates using Handlebars.",
2018-09-14 21:02:17 +00:00
"private": false,
2021-03-27 15:07:02 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
2022-08-07 14:45:38 +00:00
"type": "module",
2016-11-20 11:35:46 +00:00
"scripts": {
2021-05-17 12:36:15 +00:00
"test": "(tstest test/ --web)",
2022-08-07 14:45:38 +00:00
"build": "(tsbuild --web)",
"buildDocs": "tsdoc"
2016-11-20 11:35:46 +00:00
},
"repository": {
"type": "git",
2024-05-29 12:14:55 +00:00
"url": "https://code.foss.global/push.rocks/smartmustache.git"
2016-11-20 11:35:46 +00:00
},
"keywords": [
2024-04-14 16:01:23 +00:00
"templating",
"handlebars",
"text processing",
"data binding",
"code generation",
"string interpolation",
"dynamic content"
2016-11-20 11:35:46 +00:00
],
"author": "Lossless GmbH",
"license": "MIT",
"bugs": {
"url": "https://gitlab.com/pushrocks/tlt/issues"
},
2024-05-29 12:14:55 +00:00
"homepage": "https://code.foss.global/push.rocks/smartmustache",
2016-11-20 16:41:26 +00:00
"dependencies": {
2021-03-27 15:07:02 +00:00
"handlebars": "^4.7.7"
2016-11-20 16:41:26 +00:00
},
2018-09-14 21:02:17 +00:00
"devDependencies": {
2022-08-07 14:45:38 +00:00
"@gitzone/tsbuild": "^2.1.65",
"@gitzone/tsrun": "^1.2.37",
"@gitzone/tstest": "^1.0.73",
"@pushrocks/tapbundle": "^5.0.4"
2019-10-26 21:36:13 +00:00
},
"files": [
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
2021-03-27 15:07:02 +00:00
"dist_*/**/*",
"dist_ts/**/*",
2019-10-26 21:36:13 +00:00
"dist_ts_web/**/*",
"assets/**/*",
"cli.js",
"npmextra.json",
"readme.md"
2021-03-27 15:07:02 +00:00
],
"browserslist": [
"last 1 chrome versions"
2019-10-26 21:36:13 +00:00
]
2023-07-10 08:16:46 +00:00
}