1 { 2 "name": "flatbuffers", 3 "version": "1.8.0", 4 "description": "Memory Efficient Serialization Library", 5 "files": ["js/flatbuffers.js", "js/flatbuffers.mjs"], 6 "main": "js/flatbuffers", 7 "module": "js/flatbuffers.mjs", 8 "directories": { 9 "doc": "docs", 10 "test": "tests" 11 }, 12 "scripts": { 13 "test": "tests/JavaScriptTest.sh", 14 "append-esm-export": "sed \"s/this.flatbuffers = flatbuffers;/export { flatbuffers };/\" js/flatbuffers.js >> js/flatbuffers.mjs", 15 "prepublishOnly": "npm run append-esm-export" 16 }, 17 "repository": { 18 "type": "git", 19 "url": "git+https://github.com/google/flatbuffers.git" 20 }, 21 "keywords": [ 22 "flatbuffers" 23 ], 24 "author": "The FlatBuffers project", 25 "license": "SEE LICENSE IN LICENSE.txt", 26 "bugs": { 27 "url": "https://github.com/google/flatbuffers/issues" 28 }, 29 "homepage": "https://google.github.io/flatbuffers/" 30 } 31