-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
51 lines (51 loc) · 1.17 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": "apisix-javascript-plugin-runner",
"version": "1.0.0",
"description": "Node.js / Deno / WASM Plugin Runner for APISIX",
"main": "index.js",
"type": "module",
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"test": "jest"
},
"nyc": {
"extends": "@istanbuljs/nyc-config-typescript",
"all": true,
"exclude": [
"src/ext-plugin"
]
},
"jest": {
"roots": [
"./src"
],
"transform": {
".ts": "ts-jest"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/zenozeng/apisix-javascript-plugin-runner.git"
},
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/zenozeng/apisix-javascript-plugin-runner/issues"
},
"homepage": "https://github.com/zenozeng/apisix-javascript-plugin-runner#readme",
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@types/node": "^15.14.9",
"@types/node-fetch": "^2.5.10",
"jest": "^27.0.5",
"node-fetch": "^2.6.7",
"nyc": "^15.1.0",
"source-map-support": "^0.5.19",
"ts-jest": "^27.0.3",
"typescript": "^4.5.2"
},
"dependencies": {
"flatbuffers": "^2.0.3"
}
}