-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 995 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 995 Bytes
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
{
"name": "@queue-it/fastly",
"version": "2.0.0-beta.0",
"description": "Queue-it connector for Fastly",
"main": "src/index.ts",
"author": "devs@queue-it.com",
"repository": "https://github.com/queueit/KnownUser.V3.Fastly",
"license": "MIT",
"files": [
"package.json",
"README.md",
"src/sdk",
"src/contextProvider.ts",
"src/helper.ts",
"src/integrationConfigProvider.ts",
"src/requestResponseHandler.ts",
"src/index.ts"
],
"scripts": {
"test": "jest",
"bundle": "esbuild src/index.ts --bundle --outfile=bin/index.js --platform=node --target=es2022 && js-compute-runtime bin/index.js bin/main.wasm",
"build": "fastly compute build",
"deploy": "fastly compute deploy"
},
"dependencies": {
"@fastly/js-compute": "^3.0.0"
},
"devDependencies": {
"@types/jest": "^29.5.0",
"esbuild": "^0.27.3",
"jest": "^29.5.0",
"ts-jest": "^29.1.0",
"typescript": "^5.4.0"
}
}