{ "name": "event-handler", "version": "0.1.0", "description": "TypeScript HTTP Handler", "license": "Apache-2.0", "repository": { "type": "git", "url": "" }, "scripts": { "build": "npx -p typescript tsc", "pretest": "npm run lint && npm run build", "test:unit": "ts-node node_modules/tape/bin/tape test/unit.ts", "test:integration": "ts-node node_modules/tape/bin/tape test/integration.ts", "test": "npm run test:unit && npm run test:integration", "start": "FUNC_LOG_LEVEL=info faas-js-runtime ./build/index.js", "lint": "eslint \"src/**/*.{js,ts,tsx}\" \"test/**/*.{js,ts,tsx}\" --quiet", "debug": "nodemon --inspect ./node_modules/faas-js-runtime/bin/cli.js ./build/index.js" }, "devDependencies": { "@types/tape": "^4.13.0", "@typescript-eslint/eslint-plugin": "^4.24.0", "@typescript-eslint/parser": "^4.24.0", "eslint": "^7.26.0", "eslint-config-prettier": "^8.3.0", "eslint-plugin-prettier": "^3.4.0", "nodemon": "^3.0.1", "prettier": "^2.3.0", "supertest": "^6.3.1", "tape": "^4.13.0", "ts-node": "^9.1.1", "tsd": "^0.24.1", "tslint-config-prettier": "^1.18.0", "typescript": "^5.1.6" }, "dependencies": { "@types/node": "^20.4.2", "faas-js-runtime": "^2.2.2" } }