Simon Priet e69a613a37 feat: Created a mini nodeJS server with NewMan for testing without PostMan GUI.
This will mimic a run in a CD/CI environment or docker container.
2021-09-08 14:01:19 +02:00

36 lines
786 B
JSON

{
"name": "brotli",
"version": "1.3.2",
"description": "A port of the Brotli compression algorithm as used in WOFF2",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/devongovett/brotli.js.git"
},
"keywords": [
"compress",
"decompress",
"encode",
"decode"
],
"author": "Devon Govett <devongovett@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/devongovett/brotli.js/issues"
},
"homepage": "https://github.com/devongovett/brotli.js",
"dependencies": {
"base64-js": "^1.1.2"
},
"devDependencies": {
"mocha": "^2.2.1"
},
"browser": {
"./dec/dictionary-data.js": "./dec/dictionary-browser.js"
},
"scripts": {
"test": "mocha",
"prepublish": "make"
}
}