From 38b24fbfa874ac07122949ad2b1b4b4831d523ed Mon Sep 17 00:00:00 2001 From: anton Date: Mon, 7 Aug 2017 18:19:35 +0200 Subject: [PATCH] added package.json to be able to intall via npm package manager, converted readme to utf-8, added basic .gitignore file --- .gitignore | 35 +++++++++++++++++++++++++++++++++++ README.txt | 2 +- package.json | 21 +++++++++++++++++++++ 3 files changed, 57 insertions(+), 1 deletion(-) create mode 100644 .gitignore create mode 100644 package.json diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..2e78ee1 --- /dev/null +++ b/.gitignore @@ -0,0 +1,35 @@ +# Created by .ignore support plugin (hsz.mobi) +.idea +.DS_store +Thumbs.db +logs +*.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* +pids +*.pid +*.seed +*.pid.lock +lib-cov +coverage +.nyc_output +.grunt +bower_components +.lock-wscript +build/Release +node_modules/ +jspm_packages/ +typings/ +.npm +.eslintcache +.node_repl_history +*.tgz +.yarn-integrity +.env +*.asv +*.m~ +*.mex* +slprj/ +octave-workspace +.autosave diff --git a/README.txt b/README.txt index 3f537ba..4701459 100644 --- a/README.txt +++ b/README.txt @@ -88,7 +88,7 @@ JSON. The detailed help info for the four functions can be found below: Nedialko Krouchev: http://www.mathworks.com/matlabcentral/fileexchange/25713 created on 2009/11/02 - François Glineur: http://www.mathworks.com/matlabcentral/fileexchange/23393 + François Glineur: http://www.mathworks.com/matlabcentral/fileexchange/23393 created on 2009/03/22 Joel Feenstra: http://www.mathworks.com/matlabcentral/fileexchange/20565 diff --git a/package.json b/package.json new file mode 100644 index 0000000..3604355 --- /dev/null +++ b/package.json @@ -0,0 +1,21 @@ +{ + "name": "jsonlab", + "version": "1.5.0", + "description": "An open-source MATLAB/Octave JSON encoder and decoder", + "directories": { + "example": "examples" + }, + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/fangq/jsonlab.git" + }, + "author": "Qianqian Fang ", + "license": "GPL-3.0", + "bugs": { + "url": "https://github.com/fangq/jsonlab/issues" + }, + "homepage": "https://github.com/fangq/jsonlab#readme" +}