-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
56 lines (56 loc) · 1.25 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
{
"name": "kong-pdk",
"version": "0.6.0",
"description": "Kong PDK for Javascript and Plugin Server",
"main": "app.js",
"scripts": {
"start": "node ./bin/kong-js-pluginserver -d $(pwd)/examples",
"test": "jest --coverage"
},
"files": [
"bin",
"kong",
"lib",
"cli.js",
"listener.js",
"pdk.js",
"server.js",
"plugin_test.js"
],
"author": "Kong",
"license": "Apache-2.0",
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/preset-env": "^7.14.7",
"jest": "^28.1.0",
"node-fetch": "^2.6.1",
"uuid": "^9.0.0"
},
"dependencies": {
"@msgpack/msgpack": "^2.7.0",
"@types/node": "^18.11.9",
"commander": "^10.0.0",
"node-color-log": "^10.0.2",
"ts-node": "^10.1.0",
"typescript": "^4.2.4"
},
"directories": {
"example": "examples",
"lib": "lib",
"bin": "bin"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Kong/kong-js-pdk.git"
},
"jest": {
"coveragePathIgnorePatterns": ["/node_modules/", "plugin_test"]
},
"bugs": {
"url": "https://github.com/Kong/kong-js-pdk/issues"
},
"bin": {
"kong-js-pluginserver": "./bin/kong-js-pluginserver"
},
"homepage": "https://github.com/Kong/kong-js-pdk#readme"
}