-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
66 lines (66 loc) · 1.79 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "faas-js-runtime",
"version": "2.4.0",
"repository": {
"type": "git",
"url": "https://github.com/nodeshift/faas-js-runtime.git"
},
"author": "Red Hat, Inc.",
"license": "Apache-2.0",
"engines": {
"node": "^20 || ^18 || ^16"
},
"type": "commonjs",
"scripts": {
"lint": "eslint --ignore-path .gitignore .",
"fix-lint": "eslint --fix --ignore-path .gitignore .",
"test": "npm run test:source && npm run test:types",
"test:source": "nyc --reporter=lcovonly tape test/test*.js | colortape",
"test:types": "tsd",
"pretest": "npm run lint",
"sbom": "npx @cyclonedx/cyclonedx-npm --omit dev --package-lock-only --output-file sbom.json"
},
"description": "A Node.js framework for executing arbitrary functions in response to HTTP or cloud events",
"files": [
"index.d.ts",
"index.js",
"lib",
"bin",
"sbom.json"
],
"bugs": {
"url": "https://github.com/nodeshift/faas-js-runtime/issues"
},
"types": "index.d.ts",
"bin": "./bin/cli.js",
"dependencies": {
"cloudevents": "^8.0.0",
"commander": "^11.0.0",
"death": "^1.1.0",
"fastify": "^4.21.0",
"fastify-raw-body": "^4.3.0",
"js-yaml": "^4.1.0",
"node-os-utils": "^1.3.7",
"overload-protection": "^1.2.3",
"prom-client": "^15.0.0",
"qs": "^6.11.2"
},
"devDependencies": {
"@cyclonedx/cyclonedx-npm": "^1.16.1",
"@types/node": "^20.4.7",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.4.1",
"colortape": "^0.1.2",
"eslint": "^8.46.0",
"eslint-config-prettier": "^8.7.0",
"nyc": "^15.1.0",
"supertest": "^6.3.1",
"tape": "^5.7.4",
"tsd": "^0.28.1",
"typescript": "^5.2.2"
},
"tsd": {
"directory": "test/types",
"typingsFile": "index.d.ts"
}
}