forked from cloudevents/sdk-javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
157 lines (157 loc) · 4.36 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
{
"name": "cloudevents",
"version": "4.0.3",
"description": "CloudEvents SDK for JavaScript",
"main": "dist/index.js",
"scripts": {
"watch": "tsc --project tsconfig.json --watch",
"build": "tsc --project tsconfig.json && tsc --project tsconfig.browser.json && webpack",
"lint": "npm run lint:md && npm run lint:js",
"lint:js": "eslint 'src/**/*.{js,ts}' 'test/**/*.{js,ts}' cucumber.js",
"lint:md": "remark .",
"lint:fix": "eslint 'src/**/*.{js,ts}' 'test/**/*.{js,ts}' --fix",
"pretest": "npm run lint && npm run conformance",
"test": "mocha --require ts-node/register ./test/integration/**/*.ts",
"conformance": "cucumber-js ./conformance/features/http-protocol-binding.feature -p default",
"coverage": "nyc --reporter=lcov --reporter=text npm run test",
"coverage-publish": "wget -qO - https://coverage.codacy.com/get.sh | bash -s report -l JavaScript -r coverage/lcov.info",
"generate-docs": "typedoc --excludeNotDocumented --out docs src",
"prepublishOnly": "npm run build"
},
"files": [
"dist",
"bundles"
],
"repository": {
"type": "git",
"url": "git+https://github.com/cloudevents/sdk-javascript.git"
},
"keywords": [
"events",
"cloudevents",
"sdk",
"javascript",
"cncf"
],
"author": "cloudevents.io",
"contributors": [
{
"name": "Fábio José de Moraes",
"email": "fabiojose@gmail.com",
"url": "https://github.com/fabiojose"
},
{
"name": "Lance Ball",
"email": "lball@redhat.com",
"url": "https://github.com/lance"
},
{
"name": "Lucas Holmquist",
"email": "lholmqui@redhat.com",
"url": "https://github.com/lholmquist"
},
{
"name": "Grant Timmerman",
"url": "https://github.com/grant"
},
{
"name": "Daniel Bevenius",
"email": "daniel.bevenius@gmail.com",
"url": "https://github.com/danbev"
},
{
"name": "Helio Frota",
"url": "https://github.com/helio-frota"
},
{
"name": "Doug Davis",
"email": "dug@us.ibm.com",
"url": "https://github.com/duglin"
},
{
"name": "Remi Cattiau",
"email": "rcattiau@gmail.com",
"url": "https://github.com/loopingz"
},
{
"name": "Michele Angioni",
"url": "https://github.com/micheleangioni"
},
{
"name": "Ali Ok",
"email": "aliok@redhat.com",
"url": "https://github.com/aliok"
},
{
"name": "Philip Hayes",
"url": "https://github.com/deewhyweb"
},
{
"name": "Jingwen Peng",
"url": "https://github.com/pengsrc"
},
{
"name": "Sidharth Vinod",
"email": "sidharthv96@gmail.com",
"url": "https://github.com/sidharthv96"
},
{
"name": "Matej Vasek",
"url": "https://github.com/matejvasek"
}
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/cloudevents/sdk-javascript/issues"
},
"homepage": "https://github.com/cloudevents/sdk-javascript#readme",
"dependencies": {
"ajv": "~6.12.3",
"uuid": "~8.3.0"
},
"devDependencies": {
"@types/ajv": "^1.0.0",
"@types/chai": "^4.2.11",
"@types/cucumber": "^6.0.1",
"@types/got": "^9.6.11",
"@types/mocha": "^7.0.2",
"@types/node": "^14.14.10",
"@types/superagent": "^4.1.10",
"@types/uuid": "^8.0.0",
"@typescript-eslint/eslint-plugin": "^4.29.0",
"@typescript-eslint/parser": "^4.29.0",
"axios": "^0.21.3",
"chai": "~4.2.0",
"cucumber": "^6.0.5",
"cucumber-pretty": "^6.0.0",
"cucumber-tsflow": "^3.2.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-promise": "^5.1.0",
"got": "^11.7.0",
"http-parser-js": "^0.5.2",
"mocha": "~8.3.0",
"nock": "~12.0.3",
"nyc": "~15.0.0",
"prettier": "^2.0.5",
"remark-cli": "^10.0.0",
"remark-lint": "^8.0.0",
"remark-lint-list-item-indent": "^2.0.1",
"remark-preset-lint-recommended": "^5.0.0",
"superagent": "^6.1.0",
"ts-node": "^8.10.2",
"typedoc": "^0.21.5",
"typescript": "^4.3.5",
"webpack": "^5.1.1",
"webpack-cli": "^4.0.0"
},
"publishConfig": {
"access": "public"
},
"types": "./dist/index.d.ts"
}