-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.41 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.41 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
{
"name": "@fastly/http-compute-js",
"version": "2.0.0",
"description": "Node.js-compatible request and response objects for JavaScript on Fastly Compute",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"directories": {
"lib": "lib"
},
"scripts": {
"ci": "npm run clean && npm run compile",
"prepack": "npm run ci",
"compile": "tsc --build tsconfig.json",
"clean": "rm -rf dist",
"test": "vitest run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fastly/http-compute-js.git"
},
"keywords": [
"fastly",
"compute",
"compute-js",
"node",
"http",
"request",
"response"
],
"author": "Katsuyuki Omuro <komuro@fastly.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/fastly/http-compute-js/issues"
},
"homepage": "https://github.com/fastly/http-compute-js#readme",
"dependencies": {
"@fastly/js-compute": "^3.34.0",
"buffer": "^5.7.1",
"events": "^3.3.0",
"node-inspect-extracted": "^1.1.0",
"process": "^0.11.10",
"stream-browserify": "^3.0.0"
},
"devDependencies": {
"@types/node": "18.6.4",
"typescript": "^5.8.3",
"vitest": "^1.6.1"
},
"peerDependencies": {
"@fastly/js-compute": "^2.0.0 || ^3.0.0"
},
"files": [
"dist/**/*.js",
"dist/**/*.js.map",
"dist/**/*.d.ts",
"LICENSE",
"README.md",
"SECURITY.md"
]
}