Skip to content

Commit 4efe4a2

Browse files
committed
feat: 🎸 happy new year
1 parent b6f00cc commit 4efe4a2

File tree

7 files changed

+849
-822
lines changed

7 files changed

+849
-822
lines changed

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@
55
`Use URI style methods to operate data.`
66
All operations friendly support Vue-like frameworks.
77

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)
1010
[![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)
1313

1414
## Use
1515

dist/index.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*!
2-
* jsonuri v2.2.8
3-
* (c) 2020 @allgay
2+
* jsonuri v2.3.1
3+
* (c) 2021 @aligay
44
* Released under the MIT License.
55
*/
66
'use strict';

dist/index.mjs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*!
2-
* jsonuri v2.2.8
3-
* (c) 2020 @allgay
2+
* jsonuri v2.3.1
3+
* (c) 2021 @aligay
44
* Released under the MIT License.
55
*/
66
var IS_NOT_A_NATURAL_NUMBER = 'is not a natural number'

imodconfig.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
const pkg = require('./package.json')
22
const banner = `/*!
33
* ${pkg.name} v${pkg.version}
4-
* (c) ${new Date().getFullYear()} @allgay
4+
* (c) ${new Date().getFullYear()} @aligay
55
* Released under the ${pkg.license} License.
66
*/`
77
module.exports = {

package.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jsonuri",
3-
"version": "2.2.8",
3+
"version": "2.3.1",
44
"description": "Use URI path to get or set data",
55
"keywords": [
66
"array",
@@ -16,10 +16,10 @@
1616
"vue"
1717
],
1818
"homepage": "https://jsonuri.js.org",
19-
"bugs": "https://github.com/allgay/jsonuri/issues",
19+
"bugs": "https://github.com/aligay/jsonuri/issues",
2020
"repository": {
2121
"type": "git",
22-
"url": "https://github.com/allgay/jsonuri.git"
22+
"url": "https://github.com/aligay/jsonuri.git"
2323
},
2424
"license": "MIT",
2525
"main": "dist/index.js",
@@ -42,19 +42,19 @@
4242
"pre-commit": "sh scripts/pre-commit.sh"
4343
}
4444
},
45-
"dependencies": {},
4645
"devDependencies": {
47-
"@types/node": "^13.13.16",
46+
"@types/node": "^13.13.52",
4847
"gh-pages": "^2.2.0",
4948
"ghooks": "^2.0.4",
5049
"imod": "^1.5.0",
5150
"istanbul": "^0.4.5",
5251
"jasmine-node": "^3.0.0",
5352
"multi-shell": "^2.0.0-alpha.1",
5453
"rimraf": "^3.0.2",
54+
"tslib": "^2.2.0",
5555
"tslint": "^5.20.1",
5656
"tslint-config-standard": "^9.0.0",
57-
"typescript": "^3.9.7"
57+
"typescript": "^3.9.9"
5858
},
5959
"engines": {
6060
"node": ">=6"

www/index.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<meta charset="UTF-8">
55
<title>JSON URI - A better way to manipulate data,friendly support Vue-like frameworks</title>
66
<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>
88
<style>
99
*{margin: 0; padding: 0; font-family: monospace;}
1010
body{
@@ -190,7 +190,7 @@
190190
<body>
191191
<div style="display: none"><script src="https://s13.cnzz.com/z_stat.php?id=1273470337&web_id=1273470337" language="JavaScript"></script></div>
192192
<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!
194194
</div>
195195
<div style="width: 1100px; margin:0 auto; overflow: hidden;">
196196
<h1>
@@ -226,7 +226,7 @@ <h1>
226226
</div>
227227

228228
<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>
230230
</div>
231231
</div>
232232
</div>

0 commit comments

Comments
 (0)