-
Notifications
You must be signed in to change notification settings - Fork 115
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added package.json to be able to intall via npm package manager, conv…
…erted readme to utf-8, added basic .gitignore file
- Loading branch information
anton
committed
Aug 7, 2017
1 parent
ae7a5d9
commit 38b24fb
Showing
3 changed files
with
57 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 <q.fang at neu.edu>", | ||
"license": "GPL-3.0", | ||
"bugs": { | ||
"url": "https://github.com/fangq/jsonlab/issues" | ||
}, | ||
"homepage": "https://github.com/fangq/jsonlab#readme" | ||
} |