File tree 7 files changed +849
-822
lines changed
7 files changed +849
-822
lines changed Original file line number Diff line number Diff line change 5
5
` Use URI style methods to operate data. `
6
6
All operations friendly support Vue-like frameworks.
7
7
8
- [ ![ Build Status] ( https://api.travis-ci.org/allgay /jsonuri.svg?branch=master )] ( https://travis-ci.org/allgay /jsonuri/branches )
9
- [ ![ codecov] ( https://codecov.io/gh/allgay /jsonuri/branch/master/graph/badge.svg )] ( https://codecov.io/gh/allgay /jsonuri/branch/master )
8
+ [ ![ Build Status] ( https://api.travis-ci.org/aligay /jsonuri.svg?branch=master )] ( https://travis-ci.org/aligay /jsonuri/branches )
9
+ [ ![ codecov] ( https://codecov.io/gh/aligay /jsonuri/branch/master/graph/badge.svg )] ( https://codecov.io/gh/aligay /jsonuri/branch/master )
10
10
[ ![ npm] ( https://img.shields.io/npm/v/jsonuri.svg )] ( https://www.npmjs.com/package/jsonuri )
11
- [ ![ dependencies Status] ( https://david-dm.org/allgay /jsonuri/status.svg )] ( https://david-dm.org/allgay /jsonuri )
12
- [ ![ devDependencies Status] ( https://david-dm.org/allgay /jsonuri/dev-status.svg )] ( https://david-dm.org/allgay /jsonuri?type=dev )
11
+ [ ![ dependencies Status] ( https://david-dm.org/aligay /jsonuri/status.svg )] ( https://david-dm.org/aligay /jsonuri )
12
+ [ ![ devDependencies Status] ( https://david-dm.org/aligay /jsonuri/dev-status.svg )] ( https://david-dm.org/aligay /jsonuri?type=dev )
13
13
14
14
## Use
15
15
Original file line number Diff line number Diff line change 1
1
/*!
2
- * jsonuri v2.2.8
3
- * (c) 2020 @allgay
2
+ * jsonuri v2.3.1
3
+ * (c) 2021 @aligay
4
4
* Released under the MIT License.
5
5
*/
6
6
'use strict' ;
Original file line number Diff line number Diff line change 1
1
/*!
2
- * jsonuri v2.2.8
3
- * (c) 2020 @allgay
2
+ * jsonuri v2.3.1
3
+ * (c) 2021 @aligay
4
4
* Released under the MIT License.
5
5
*/
6
6
var IS_NOT_A_NATURAL_NUMBER = 'is not a natural number'
Original file line number Diff line number Diff line change 1
1
const pkg = require ( './package.json' )
2
2
const banner = `/*!
3
3
* ${ pkg . name } v${ pkg . version }
4
- * (c) ${ new Date ( ) . getFullYear ( ) } @allgay
4
+ * (c) ${ new Date ( ) . getFullYear ( ) } @aligay
5
5
* Released under the ${ pkg . license } License.
6
6
*/`
7
7
module . exports = {
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " jsonuri" ,
3
- "version" : " 2.2.8 " ,
3
+ "version" : " 2.3.1 " ,
4
4
"description" : " Use URI path to get or set data" ,
5
5
"keywords" : [
6
6
" array" ,
16
16
" vue"
17
17
],
18
18
"homepage" : " https://jsonuri.js.org" ,
19
- "bugs" : " https://github.com/allgay /jsonuri/issues" ,
19
+ "bugs" : " https://github.com/aligay /jsonuri/issues" ,
20
20
"repository" : {
21
21
"type" : " git" ,
22
- "url" : " https://github.com/allgay /jsonuri.git"
22
+ "url" : " https://github.com/aligay /jsonuri.git"
23
23
},
24
24
"license" : " MIT" ,
25
25
"main" : " dist/index.js" ,
42
42
"pre-commit" : " sh scripts/pre-commit.sh"
43
43
}
44
44
},
45
- "dependencies" : {},
46
45
"devDependencies" : {
47
- "@types/node" : " ^13.13.16 " ,
46
+ "@types/node" : " ^13.13.52 " ,
48
47
"gh-pages" : " ^2.2.0" ,
49
48
"ghooks" : " ^2.0.4" ,
50
49
"imod" : " ^1.5.0" ,
51
50
"istanbul" : " ^0.4.5" ,
52
51
"jasmine-node" : " ^3.0.0" ,
53
52
"multi-shell" : " ^2.0.0-alpha.1" ,
54
53
"rimraf" : " ^3.0.2" ,
54
+ "tslib" : " ^2.2.0" ,
55
55
"tslint" : " ^5.20.1" ,
56
56
"tslint-config-standard" : " ^9.0.0" ,
57
- "typescript" : " ^3.9.7 "
57
+ "typescript" : " ^3.9.9 "
58
58
},
59
59
"engines" : {
60
60
"node" : " >=6"
Original file line number Diff line number Diff line change 4
4
< meta charset ="UTF-8 ">
5
5
< title > JSON URI - A better way to manipulate data,friendly support Vue-like frameworks</ title >
6
6
< script src ="//cdn.jsdelivr.net/npm/vue "> </ script >
7
- < script src ="//cdn.jsdelivr.net/npm/jsonuri@2.2.8 /dist/index.min.js "> </ script >
7
+ < script src ="//cdn.jsdelivr.net/npm/jsonuri@2.3.1 /dist/index.min.js "> </ script >
8
8
< style >
9
9
* {margin : 0 ; padding : 0 ; font-family : monospace;}
10
10
body {
190
190
< body >
191
191
< div style ="display: none "> < script src ="https://s13.cnzz.com/z_stat.php?id=1273470337&web_id=1273470337 " language ="JavaScript "> </ script > </ div >
192
192
< div class ="tips ">
193
- jsonuri < a href ="//www.npmjs.com/package/jsonuri "> 2.2.8 </ a > is now available. Download our latest version today!
193
+ jsonuri < a href ="//www.npmjs.com/package/jsonuri "> 2.3.1 </ a > is now available. Download our latest version today!
194
194
</ div >
195
195
< div style ="width: 1100px; margin:0 auto; overflow: hidden; ">
196
196
< h1 >
226
226
</ div >
227
227
228
228
< div class ="ribbon right red ">
229
- < a href ="//github.com/allgay /jsonuri "> Fork me on GitHub</ a >
229
+ < a href ="//github.com/aligay /jsonuri "> Fork me on GitHub</ a >
230
230
</ div >
231
231
</ div >
232
232
</ div >
You can’t perform that action at this time.
0 commit comments