smartnginx/package.json

66 lines
1.7 KiB
JSON
Raw Normal View History

2016-07-06 01:14:44 +00:00
{
2023-07-10 08:16:53 +00:00
"name": "@push.rocks/smartnginx",
2023-07-26 14:05:53 +00:00
"version": "2.0.52",
2018-08-10 22:29:16 +00:00
"private": false,
2024-04-14 16:02:55 +00:00
"description": "A TypeScript library for controlling Nginx from Node.js, with support for generating and managing Nginx configurations dynamically.",
2023-07-26 14:05:53 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
2016-07-06 01:14:44 +00:00
"scripts": {
"test": "tstest test/",
"cleanTest": "(rm -r nginxconfig) && npm run test",
2023-07-26 14:05:53 +00:00
"build": "(tsbuild --allowimplicitany)"
2016-07-06 01:14:44 +00:00
},
"repository": {
"type": "git",
2024-05-29 12:15:00 +00:00
"url": "https://code.foss.global/push.rocks/smartnginx.git"
2016-07-06 01:14:44 +00:00
},
"keywords": [
2024-04-14 16:02:55 +00:00
"nginx",
"node.js",
"TypeScript",
"configuration management",
"web server",
"reverse proxy",
"SSL certificates"
2016-07-06 01:14:44 +00:00
],
"author": "Lossless GmbH",
"license": "MIT",
"bugs": {
"url": "https://gitlab.com/pushrocks/smartnginx/issues"
},
2024-05-29 12:15:00 +00:00
"homepage": "https://code.foss.global/push.rocks/smartnginx",
2016-07-06 01:14:44 +00:00
"dependencies": {
2023-07-26 14:05:53 +00:00
"@push.rocks/lik": "^6.0.2",
"@push.rocks/smartfile": "^10.0.26",
"@push.rocks/smartlog": "^3.0.2",
"@push.rocks/smartpath": "^5.0.11",
"@push.rocks/smartpromise": "^4.0.2",
"@push.rocks/smartshell": "^3.0.3",
"@push.rocks/smartstring": "^4.0.7",
"@push.rocks/smartunique": "^3.0.3",
"selfsigned": "^2.1.1"
2016-07-06 01:14:44 +00:00
},
"devDependencies": {
2023-07-26 14:05:53 +00:00
"@gitzone/tsbuild": "^2.1.66",
"@gitzone/tsrun": "^1.2.44",
"@gitzone/tstest": "^1.0.77",
"@push.rocks/qenv": "^5.0.2",
"@push.rocks/tapbundle": "^5.0.8"
2019-08-20 20:30:31 +00:00
},
"files": [
2023-07-26 14:05:53 +00:00
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
2019-08-20 20:30:31 +00:00
"cli.js",
"npmextra.json",
"readme.md"
2023-07-26 14:05:53 +00:00
],
"type": "module",
"browserslist": [
"last 1 chrome versions"
2019-08-20 20:30:31 +00:00
]
2024-04-14 16:02:55 +00:00
}