-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.3 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"name": "event-handler",
"version": "0.1.0",
"description": "TypeScript CloudEvent 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": "^2.0.4",
"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": "^4.2.4"
},
"dependencies": {
"@types/node": "^16.11.12",
"cloudevents": "^6.0.3",
"faas-js-runtime": "^0.9.7"
}
}