-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.16 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
{
"name": "@fastly/esi",
"description": "ESI implementation for JavaScript, using the modern fetch and streaming APIs.",
"version": "0.1.4",
"repository": {
"type": "git",
"url": "git+https://github.com/fastly/compute-js-esi.git"
},
"author": {
"name": "Katsuyuki Omuro",
"email": "[email protected]"
},
"type": "module",
"main": "./build/index.js",
"types": "./build/index.d.ts",
"scripts": {
"prepack": "npm run build",
"build": "tsc -p tsconfig.build.json",
"clean": "rm -rf build",
"coverage": "c8 npm test",
"test": "npm run test:unit && npm run test:e2e",
"test:unit": "node --test --no-warnings=ExperimentalWarning --loader ts-node/esm test/unit/**/*.test.ts",
"test:e2e": "cd test/e2e/01 && ./test.sh"
},
"devDependencies": {
"@fastly/js-compute": "^3.7.3",
"c8": "^8.0.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"files": [
"build/**/*.js",
"build/**/*.js.map",
"build/**/*.d.ts",
"LICENSE",
"README.md",
"CHANGELOG.md",
"SECURITY.md"
],
"keywords": [
"esi",
"fetch",
"transformstream",
"streams",
"fastly",
"compute"
]
}