jquery-param 1.2.4 → 1.2.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +2 -1
  2. package/package.json +51 -20
package/README.md CHANGED
@@ -1,6 +1,7 @@
1
1
  # jquery-param
2
2
 
3
- [![Circle CI](https://circleci.com/gh/knowledgecode/jquery-param.svg?style=shield)](https://circleci.com/gh/knowledgecode/jquery-param)
3
+ [![CI](https://github.com/knowledgecode/jquery-param/actions/workflows/ci.yml/badge.svg)](https://github.com/knowledgecode/jquery-param/actions/workflows/ci.yml)
4
+ [![npm](https://img.shields.io/npm/v/jquery-param)](https://www.npmjs.com/package/jquery-param)
4
5
 
5
6
  ## Features
6
7
 
package/package.json CHANGED
@@ -1,37 +1,68 @@
1
1
  {
2
2
  "name": "jquery-param",
3
- "version": "1.2.4",
4
- "description": "equivalent function to jQuery.param",
5
- "main": "dist/umd/jquery-param.js",
6
- "module": "dist/esm/jquery-param.mjs",
7
- "scripts": {
8
- "build": "rollup -c",
9
- "test": "npm run build && mocha test/test.mjs"
10
- },
11
- "repository": {
12
- "type": "git",
13
- "url": "git+https://github.com/knowledgecode/jquery-param.git"
14
- },
3
+ "version": "1.2.5",
4
+ "description": "Equivalent function to jQuery.param",
15
5
  "keywords": [
16
6
  "jquery",
17
7
  "param",
18
8
  "equivalent",
19
9
  "jquery.param",
20
10
  "serialize",
21
- "post"
11
+ "post",
12
+ "query-string",
13
+ "url-encoding",
14
+ "form-data",
15
+ "browser",
16
+ "nodejs"
22
17
  ],
23
- "author": "KNOWLEDGECODE",
24
- "license": "MIT",
18
+ "homepage": "https://github.com/knowledgecode/jquery-param#readme",
25
19
  "bugs": {
26
20
  "url": "https://github.com/knowledgecode/jquery-param/issues"
27
21
  },
28
- "homepage": "https://github.com/knowledgecode/jquery-param",
22
+ "repository": {
23
+ "type": "git",
24
+ "url": "git+https://github.com/knowledgecode/jquery-param.git"
25
+ },
26
+ "license": "MIT",
27
+ "author": {
28
+ "name": "KNOWLEDGECODE",
29
+ "url": "https://github.com/knowledgecode"
30
+ },
31
+ "type": "module",
32
+ "exports": {
33
+ ".": {
34
+ "import": "./dist/esm/jquery-param.mjs",
35
+ "require": "./dist/umd/jquery-param.js",
36
+ "browser": "./jquery-param.min.js"
37
+ }
38
+ },
39
+ "main": "dist/umd/jquery-param.js",
40
+ "module": "dist/esm/jquery-param.mjs",
41
+ "browser": "jquery-param.min.js",
42
+ "sideEffects": false,
43
+ "files": [
44
+ "LICENSE",
45
+ "README.md",
46
+ "dist/**/*",
47
+ "jquery-param.min.js"
48
+ ],
49
+ "scripts": {
50
+ "build": "rollup -c",
51
+ "build:watch": "rollup -c -w",
52
+ "test": "npm run build && mocha test/test.mjs",
53
+ "test:watch": "npm run test -- --watch",
54
+ "prepublishOnly": "npm run build"
55
+ },
29
56
  "devDependencies": {
30
57
  "@rollup/plugin-terser": "^0.4.4",
31
- "chai": "^5.1.1",
58
+ "chai": "^5.3.1",
32
59
  "jquery": "^3.7.1",
33
- "jsdom": "^24.1.1",
34
- "mocha": "^10.7.3",
35
- "rollup": "^4.21.0"
60
+ "jsdom": "^26.1.0",
61
+ "mocha": "^11.7.1",
62
+ "rollup": "^4.46.4"
63
+ },
64
+ "publishConfig": {
65
+ "access": "public",
66
+ "registry": "https://registry.npmjs.org/"
36
67
  }
37
68
  }