UNPKG

@fastly/esi

Version:

ESI implementation for JavaScript, using the modern fetch and streaming APIs.

49 lines (48 loc) 1.19 kB
{ "name": "@fastly/esi", "description": "ESI implementation for JavaScript, using the modern fetch and streaming APIs.", "version": "0.1.7", "repository": { "type": "git", "url": "git+https://github.com/fastly/compute-js-esi.git" }, "author": { "name": "Katsuyuki Omuro", "email": "komuro@fastly.com" }, "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" ] }