aboutsummaryrefslogtreecommitdiff
path: root/package.json
blob: d01680a0f702d72c559ab5e6735e8cfb2523c9fd (plain)
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
{
  "name": "flatbuffers",
  "version": "1.12.0",
  "description": "Memory Efficient Serialization Library",
  "files": [
    "js/flatbuffers.js",
    "js/flatbuffers.mjs"
  ],
  "main": "js/flatbuffers",
  "module": "js/flatbuffers.mjs",
  "directories": {
    "doc": "docs",
    "test": "tests"
  },
  "scripts": {
    "test": "tests/JavaScriptTest.sh",
    "append-esm-export": "sed \"s/this.flatbuffers = flatbuffers;/export { flatbuffers };/\" js/flatbuffers.js > js/flatbuffers.mjs",
    "prepublishOnly": "npm run append-esm-export"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/google/flatbuffers.git"
  },
  "keywords": [
    "flatbuffers"
  ],
  "author": "The FlatBuffers project",
  "license": "SEE LICENSE IN LICENSE.txt",
  "bugs": {
    "url": "https://github.com/google/flatbuffers/issues"
  },
  "homepage": "https://google.github.io/flatbuffers/",
  "dependencies": {}
}