JS: add package.json to publish the npm pacakge (#4166)
* JS: add package.json to publish the npm pacakge * JS: update package.json to set version and author
Showing
package.json
0 → 100644
{ | ||
"name": "flatbuffers", | ||
"version": "1.5.0", | ||
"description": "Memory Efficient Serialization Library", | ||
"files": ["js/flatbuffers.js"], | ||
"main": "js/flatbuffers.js", | ||
"directories": { | ||
"doc": "docs", | ||
"test": "tests" | ||
}, | ||
"scripts": { | ||
"test": "tests/JavaScriptTest.sh" | ||
}, | ||
"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/" | ||
} |
Please
register
or
sign in
to comment