2017-02-10 22:19:11 +00:00
|
|
|
{
|
|
|
|
"name": "flatbuffers",
|
2021-06-03 20:40:35 +00:00
|
|
|
"version": "2.0.3",
|
2017-02-10 22:19:11 +00:00
|
|
|
"description": "Memory Efficient Serialization Library",
|
2018-11-16 17:17:54 +00:00
|
|
|
"files": [
|
2020-09-17 19:21:14 +00:00
|
|
|
"js/*.js",
|
|
|
|
"js/*.d.ts",
|
|
|
|
"mjs/*.js",
|
|
|
|
"mjs/*.d.ts",
|
|
|
|
"ts/*.ts"
|
2018-11-16 17:17:54 +00:00
|
|
|
],
|
2020-09-21 16:46:24 +00:00
|
|
|
"main": "js/flatbuffers.js",
|
2021-06-01 16:10:55 +00:00
|
|
|
"module": "mjs/flatbuffers.js",
|
2017-02-10 22:19:11 +00:00
|
|
|
"directories": {
|
|
|
|
"doc": "docs",
|
|
|
|
"test": "tests"
|
|
|
|
},
|
|
|
|
"scripts": {
|
2021-01-19 20:51:13 +00:00
|
|
|
"test": "npm run compile && cd tests && ./TypeScriptTest.sh",
|
|
|
|
"compile": "tsc && tsc -p tsconfig.mjs.json",
|
2021-06-03 20:40:35 +00:00
|
|
|
"prepublishOnly": "npm install --only=dev && npm run compile"
|
2017-02-10 22:19:11 +00:00
|
|
|
},
|
|
|
|
"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"
|
|
|
|
},
|
2018-11-16 17:17:54 +00:00
|
|
|
"homepage": "https://google.github.io/flatbuffers/",
|
2020-09-17 19:21:14 +00:00
|
|
|
"dependencies": {},
|
|
|
|
"devDependencies": {
|
2021-01-19 20:51:13 +00:00
|
|
|
"@typescript-eslint/eslint-plugin": "^4.12.0",
|
|
|
|
"@typescript-eslint/parser": "^4.12.0",
|
|
|
|
"eslint": "^7.17.0",
|
|
|
|
"typescript": "^4.1.3"
|
2020-09-17 19:21:14 +00:00
|
|
|
}
|
2017-02-10 22:19:11 +00:00
|
|
|
}
|