Skip to content

Commit

Permalink
added package.json to be able to intall via npm package manager, conv…
Browse files Browse the repository at this point in the history
…erted readme to utf-8, added basic .gitignore file
  • Loading branch information
anton committed Aug 7, 2017
1 parent ae7a5d9 commit 38b24fb
Show file tree
Hide file tree
Showing 3 changed files with 57 additions and 1 deletion.
35 changes: 35 additions & 0 deletions .gitignore
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
2 changes: 1 addition & 1 deletion README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
21 changes: 21 additions & 0 deletions package.json
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"
}

0 comments on commit 38b24fb

Please sign in to comment.