-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 2 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
{
"name": "fastify-cloudevents",
"version": "4.0.0",
"description": "Fastify Plugin to serialize events in the CloudEvents standard format",
"main": "src/plugin",
"scripts": {
"audit:log": "npm audit > ./temp/audit.log",
"clean:install": "rm -rf ./package-lock.json ./node_modules/",
"dependency:log": "npm list > ./temp/dependencies.log",
"docs:clean": "rm -rf ./docs/*",
"docs:generate": "npx jsdoc -c .jsdoc.json -R README.md",
"docs": "npm run docs:clean && npm run docs:generate",
"example-enhanced:debug": "node --inspect-brk example/example-enhanced",
"example-enhanced": "node example/example-enhanced",
"example:debug": "node --inspect-brk example/example",
"example": "node example/example",
"lint:fix": "standard --fix",
"lint:standard": "standard --verbose",
"lint": "npm run lint:standard",
"test:clean": "rm -rf .nyc_output/* ./coverage/*",
"test:coverage:all": "npm run test:unit -- --cov",
"test:coverage": "npm run test:unit -- --cov --coverage-report=html",
"test:unit:debug": "tap -T --node-arg=--inspect-brk test/*.test.js",
"test:unit:dev": "tap --watch --cov test/*.test.js",
"test:unit": "tap -J test/*.test.js",
"test": "npm run lint && npm run test:unit"
},
"dependencies": {
"cloudevent": "~0.10.0",
"fast-json-stringify": "^5.1.0",
"fastify-plugin": "^4.2.0"
},
"devDependencies": {
"fastify": "^4.0.1",
"jsdoc": "^4.0.3",
"standard": "^17.0.0",
"tap": "^18.0.0"
},
"peerDependencies": {},
"engines": {
"node": ">=14.15.0"
},
"homepage": "https://github.com/smartiniOnGitHub/fastify-cloudevents#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/smartiniOnGitHub/fastify-cloudevents.git"
},
"bugs": {
"url": "https://github.com/smartiniOnGitHub/fastify-cloudevents/issues"
},
"keywords": [
"fastify",
"plugin",
"cloudevents"
],
"author": "Sandro Martini <[email protected]>",
"license": "Apache-2.0",
"snyk": true
}