liefern
Version:
Node Webserver without dependencies
81 lines (78 loc) • 2.22 kB
JSON
{
"name": "liefern",
"version": "1.0.0-rc-12",
"description": "Node Webserver without dependencies",
"engines" : {
"node" : ">=14.13.1"
},
"keywords": [
"Web",
"Server",
"NodeJs",
"Web-Server",
"no dependencies",
"Liefern",
"framework",
"http",
"https",
"router",
"app",
"api",
"multidomain",
"VirtualHost"
],
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"files": [
"dist"
],
"bin": {
"liefern": "dist/esm/bin/index.js",
"liefern-esm": "dist/esm/bin/index.js",
"liefern-cjs": "dist/cjs/bin/index.js"
},
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
}
},
"scripts": {
"lint": "eslint src",
"lint:fix": "eslint --fix src",
"format": "prettier --write 'src/**/*.ts'",
"test": "npm run test:run && npm run test:coverage:open",
"test:run": "c8 -r html -r text tsx --test src/**/*.test.ts tests/*",
"test:watch": "c8 -r html -r text tsx --test src/**/*.test.ts tests/*",
"test:watch:file": "c8 -r text tsx --test tests/cors.integration.test.ts",
"test:coverage:open": "open-cli ./coverage/index.html",
"build": "rm -fr dist/* && npm run format && tsc -p tsconfig-esm.json && tsc -p tsconfig-cjs.json && ./dist-package-json.sh && ./dist-bin-chmodx.sh",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+ssh://git@gitlab.com/kartei/liefern.io.git"
},
"author": "Robert Beyer <info@robert-beyer.pro> (http://robert-beyer.pro/)",
"license": "ISC",
"bugs": {
"url": "https://gitlab.com/kartei/liefern.io/issues"
},
"homepage": "https://gitlab.com/kartei/liefern.io#readme",
"devDependencies": {
"@types/node": "20.3.3",
"@types/supertest": "2.0.12",
"@typescript-eslint/eslint-plugin": "5.59.11",
"@typescript-eslint/parser": "5.59.11",
"c8": "8.0.0",
"eslint": "8.43.0",
"eslint-config-prettier": "8.8.0",
"eslint-config-typescript": "3.0.0",
"eslint-plugin-prettier": "4.2.1",
"open-cli": "7.2.0",
"prettier": "2.8.8",
"supertest": "6.3.3",
"typescript": "5.1.6",
"tsx": "3.12.7"
}
}