Files
smartnginx/package.json
T

69 lines
1.7 KiB
JSON
Raw Normal View History

2016-07-06 03:14:44 +02:00
{
2023-07-10 10:16:53 +02:00
"name": "@push.rocks/smartnginx",
2025-11-27 13:31:56 +00:00
"version": "2.0.54",
2018-08-11 00:29:16 +02:00
"private": false,
2024-04-14 18:02:55 +02:00
"description": "A TypeScript library for controlling Nginx from Node.js, with support for generating and managing Nginx configurations dynamically.",
2023-07-26 16:05:53 +02:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
2016-07-06 03:14:44 +02:00
"scripts": {
"test": "tstest test/ --verbose",
"cleanTest": "rm -r nginxconfig && pnpm test",
"build": "tsbuild tsfolders"
2016-07-06 03:14:44 +02:00
},
"repository": {
"type": "git",
2024-05-29 14:15:00 +02:00
"url": "https://code.foss.global/push.rocks/smartnginx.git"
2016-07-06 03:14:44 +02:00
},
"keywords": [
2024-04-14 18:02:55 +02:00
"nginx",
"node.js",
"TypeScript",
"configuration management",
"web server",
"reverse proxy",
"SSL certificates"
2016-07-06 03:14:44 +02:00
],
"author": "Lossless GmbH",
"license": "MIT",
"bugs": {
"url": "https://code.foss.global/push.rocks/smartnginx/issues"
2016-07-06 03:14:44 +02:00
},
2024-05-29 14:15:00 +02:00
"homepage": "https://code.foss.global/push.rocks/smartnginx",
2016-07-06 03:14:44 +02:00
"dependencies": {
"@push.rocks/lik": "^6.4.1",
"@push.rocks/smartfs": "^1.5.1",
"@push.rocks/smartlog": "^3.2.2",
"@push.rocks/smartpath": "^6.0.0",
"@push.rocks/smartpromise": "^4.2.3",
"@push.rocks/smartshell": "^3.3.8",
"@push.rocks/smartstring": "^4.1.0",
"@push.rocks/smartunique": "^3.0.9",
"selfsigned": "^5.5.0"
2016-07-06 03:14:44 +02:00
},
"devDependencies": {
"@git.zone/tsbuild": "^4.4.0",
"@git.zone/tsrun": "^2.0.3",
"@git.zone/tstest": "^3.6.3",
"@types/node": "^25.6.0"
2019-08-20 22:30:31 +02:00
},
"files": [
2023-07-26 16:05:53 +02:00
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
2019-08-20 22:30:31 +02:00
"cli.js",
".smartconfig.json",
"license",
2019-08-20 22:30:31 +02:00
"npmextra.json",
"readme.md"
2023-07-26 16:05:53 +02:00
],
"type": "module",
"browserslist": [
"last 1 chrome versions"
],
"packageManager": "pnpm@10.28.2"
2025-11-27 13:14:58 +00:00
}