Files
smartnginx/package.json

65 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",
2023-07-26 16:05:53 +02:00
"version": "2.0.52",
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) && npm run test",
"build": "(tsbuild tsfolders --allowimplicitany)"
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://gitlab.com/pushrocks/smartnginx/issues"
},
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.2.2",
"@push.rocks/smartfs": "^1.1.0",
"@push.rocks/smartlog": "^3.1.10",
"@push.rocks/smartpath": "^6.0.0",
"@push.rocks/smartpromise": "^4.2.3",
"@push.rocks/smartshell": "^3.3.0",
"@push.rocks/smartstring": "^4.1.0",
"@push.rocks/smartunique": "^3.0.9",
"selfsigned": "^4.0.0"
2016-07-06 03:14:44 +02:00
},
"devDependencies": {
"@git.zone/tsbuild": "^3.1.0",
"@git.zone/tsrun": "^2.0.0",
"@git.zone/tstest": "^3.1.3",
"@push.rocks/qenv": "^6.1.3"
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",
"npmextra.json",
"readme.md"
2023-07-26 16:05:53 +02:00
],
"type": "module",
"browserslist": [
"last 1 chrome versions"
2019-08-20 22:30:31 +02:00
]
2024-04-14 18:02:55 +02:00
}