-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.65 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
{
"name": "knativebus",
"version": "0.0.0-development",
"description": "Publish and Send events to KNative via wrapping them in CloudEvents and sending via HTTP Post to the appropriate broker or channel from the config.",
"main": "dist/index.js",
"scripts": {
"build": "babel src -d dist",
"lint": "eslint src __tests__ --ext=.js,.mjs",
"lint:fix": "eslint --fix src __tests__ --ext=.js,.mjs",
"test": "DEBUG=tests jest --no-cache --config ./jest.json --coverage --verbose",
"test:watch": "DEBUG=tests jest --config jest.json --watch --coverage --verbose",
"prepare": "husky install",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/CloudNativeEntrepreneur/knativebus.git"
},
"keywords": [
"cloudevents"
],
"author": "Patrick Lee Scott",
"license": "ISC",
"bugs": {
"url": "https://github.com/CloudNativeEntrepreneur/knativebus/issues"
},
"homepage": "https://github.com/CloudNativeEntrepreneur/knativebus#readme",
"dependencies": {
"@babel/runtime": "7.17.8",
"axios": "0.26.1",
"axios-retry": "^3.1.9",
"cloudevents": "5.3.2",
"debug": "4.3.4"
},
"devDependencies": {
"@babel/cli": "7.17.6",
"@babel/plugin-transform-runtime": "7.17.0",
"@babel/preset-env": "7.16.11",
"codecov": "3.8.3",
"eslint": "8.1.0",
"eslint-config-standard": "16.0.3",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "5.1.0",
"eslint-plugin-standard": "4.1.0",
"husky": "7.0.4",
"jest": "27.5.1",
"lint-staged": "12.3.7",
"semantic-release": "19.0.2"
}
}