Skip to content

Commit 38b24fb

Browse files
author
anton
committed
added package.json to be able to intall via npm package manager, converted readme to utf-8, added basic .gitignore file
1 parent ae7a5d9 commit 38b24fb

File tree

3 files changed

+57
-1
lines changed

3 files changed

+57
-1
lines changed

.gitignore

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
# Created by .ignore support plugin (hsz.mobi)
2+
.idea
3+
.DS_store
4+
Thumbs.db
5+
logs
6+
*.log
7+
npm-debug.log*
8+
yarn-debug.log*
9+
yarn-error.log*
10+
pids
11+
*.pid
12+
*.seed
13+
*.pid.lock
14+
lib-cov
15+
coverage
16+
.nyc_output
17+
.grunt
18+
bower_components
19+
.lock-wscript
20+
build/Release
21+
node_modules/
22+
jspm_packages/
23+
typings/
24+
.npm
25+
.eslintcache
26+
.node_repl_history
27+
*.tgz
28+
.yarn-integrity
29+
.env
30+
*.asv
31+
*.m~
32+
*.mex*
33+
slprj/
34+
octave-workspace
35+
.autosave

README.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ JSON. The detailed help info for the four functions can be found below:
8888

8989
Nedialko Krouchev: http://www.mathworks.com/matlabcentral/fileexchange/25713
9090
created on 2009/11/02
91-
Fran�ois Glineur: http://www.mathworks.com/matlabcentral/fileexchange/23393
91+
François Glineur: http://www.mathworks.com/matlabcentral/fileexchange/23393
9292
created on 2009/03/22
9393
Joel Feenstra:
9494
http://www.mathworks.com/matlabcentral/fileexchange/20565

package.json

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"name": "jsonlab",
3+
"version": "1.5.0",
4+
"description": "An open-source MATLAB/Octave JSON encoder and decoder",
5+
"directories": {
6+
"example": "examples"
7+
},
8+
"scripts": {
9+
"test": "echo \"Error: no test specified\" && exit 1"
10+
},
11+
"repository": {
12+
"type": "git",
13+
"url": "git+https://github.com/fangq/jsonlab.git"
14+
},
15+
"author": "Qianqian Fang <q.fang at neu.edu>",
16+
"license": "GPL-3.0",
17+
"bugs": {
18+
"url": "https://github.com/fangq/jsonlab/issues"
19+
},
20+
"homepage": "https://github.com/fangq/jsonlab#readme"
21+
}

0 commit comments

Comments
 (0)