@darlean/webservice-suite
Version:
Webservice Suite that acts as Web/API Gateway that invokes actors to serve HTTP requests
68 lines (67 loc) • 2.33 kB
JSON
{
"name": "@darlean/webservice-suite",
"version": "2.0.0-alpha.5",
"description": "Webservice Suite that acts as Web/API Gateway that invokes actors to serve HTTP requests",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"homepage": "https://darlean.io",
"repository": {
"type": "git",
"url": "https://gitlab.com/darlean/javascript/repo.git",
"directory": "suites/webservice-suite"
},
"scripts": {
"build": "shx rm -r lib/* && tsc",
"run": "node lib/index.js",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "npx eslint ./src --ext .js,.jsx,.ts,.tsx",
"prepublish": "npm run build",
"prepublishOnly": "npm run build && npm run lint",
"preversion": "npm run format && npm install && npm run lint && npm run build",
"version": "git add -A src && git add package.json && git add ../../package-lock.json && git -C ../.. tag webservice-suite-%npm_package_version%",
"postversion": "git commit -m \"Version upgrade to webservice-suite-%npm_package_version%\" && git push && git push --tags",
"precommit": "npm run format && npm run lint && npm run build",
"npm:version:alpha": "npm version prerelease --preid=alpha --git-tag-version=false",
"npm:publish": "npm publish --access=public",
"doc": "npx typedoc --skipErrorChecking --json typedoc-out.json & npx docgen typedoc-out.json ./docs/"
},
"keywords": [
"Darlean",
"Webservice",
"Suite",
"http",
"https",
"server",
"rest",
"webapi"
],
"author": "Theo van der Donk",
"license": "Apache-2.0",
"devDependencies": {
"@types/jest": "^29.2.4",
"@types/node": "^18.11.17",
"@typescript-eslint/eslint-plugin": "^5.46.1",
"@typescript-eslint/parser": "^5.46.1",
"eslint": "^8.30.0",
"jest": "^29.3.1",
"jest-standard-reporter": "^2.0.0",
"prettier": "^2.8.1",
"shx": "^0.3.4",
"ts-jest": "^29.0.3",
"typedoc": "^0.23.23",
"typescript": "^4.9.4"
},
"files": [
"lib/**/*",
"NOTICE"
],
"typedoc": {
"entryPoint": "./src/index.ts",
"tsconfig": "./tsconfig.json"
},
"dependencies": {
"@darlean/base": "^2.0.0-alpha.0",
"@darlean/utils": "^2.0.0-alpha.0",
"@darlean/webservice": "^2.0.0-alpha.0"
}
}