-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.92 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.92 KB
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
{
"name": "@envoy/envoy-integrations-sdk",
"version": "2.3.1",
"description": "SDK for building Envoy integrations.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"directories": {
"lib": "src",
"doc": "docs"
},
"files": [
"dist/*.d.ts",
"dist/*.d.ts.map",
"dist",
"src"
],
"scripts": {
"test": "jest",
"docs:generate": "typedoc",
"prepublishOnly": "tsc",
"compile": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/envoy/envoy-integrations-sdk-nodejs.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/envoy/envoy-integrations-sdk-nodejs/issues"
},
"homepage": "https://github.com/envoy/envoy-integrations-sdk-nodejs#readme",
"dependencies": {
"@types/dotenv": "^8.2.0",
"@types/faker": "^5.5.6",
"@types/jsonwebtoken": "^9.0.0",
"@types/node": "^15.12.0",
"@types/qs": "^6.9.6",
"axios": "^1.4.0",
"body-parser": "^1.19.0",
"chalk": "^4.1.2",
"dataloader": "^2.0.0",
"dotenv-flow": "^3.2.0",
"factory.ts": "^0.5.2",
"faker": "^5.5.3",
"jsonwebtoken": "^9.0.0",
"lodash.ismatch": "^4.4.0",
"luxon": "^1.27.0",
"qs": "^6.10.1"
},
"devDependencies": {
"@types/dotenv-flow": "^3.1.1",
"@types/express": "^4.17.12",
"@types/lodash.ismatch": "^4.4.6",
"@types/luxon": "^1.27.0",
"@typescript-eslint/eslint-plugin": "^4.26.0",
"@typescript-eslint/parser": "^4.26.0",
"chai": "^4.2.0",
"eslint": "^7.27.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-plugin-import": "^2.23.4",
"jest": "^29.5.0",
"jsdoc-to-markdown": "^5.0.0",
"mocha": "^10.2.0",
"proxyquire": "^2.1.0",
"sinon": "^7.3.2",
"typedoc": "^0.20.36",
"typedoc-github-wiki-theme": "^0.3.0",
"typedoc-plugin-markdown": "^3.9.0",
"typescript": "4.2"
},
"peerDependencies": {
"@types/express": "^4"
}
}