aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShintaro Abe <dictav@gmail.com>2017-02-11 07:19:11 +0900
committerWouter van Oortmerssen <aardappel@gmail.com>2017-02-10 14:19:11 -0800
commitec8038cc3dae37c09048f766d43f741f76e270dd (patch)
treecc74009441b4668f2d39d778db1d5b9e691ca19a
parent2df3d1c9654ab0ddd8c58be51609dbad86109b15 (diff)
downloadflatbuffers-ec8038cc3dae37c09048f766d43f741f76e270dd.tar.gz
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
-rw-r--r--package.json27
1 files changed, 27 insertions, 0 deletions
diff --git a/package.json b/package.json
new file mode 100644
index 00000000..7cf1e751
--- /dev/null
+++ b/package.json
@@ -0,0 +1,27 @@
+{
+ "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/"
+}