-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.57 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.57 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "jquery-param",
"version": "1.2.5",
"description": "Equivalent function to jQuery.param",
"keywords": [
"jquery",
"param",
"equivalent",
"jquery.param",
"serialize",
"post",
"query-string",
"url-encoding",
"form-data",
"browser",
"nodejs"
],
"homepage": "https://github.com/knowledgecode/jquery-param#readme",
"bugs": {
"url": "https://github.com/knowledgecode/jquery-param/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/knowledgecode/jquery-param.git"
},
"license": "MIT",
"author": {
"name": "KNOWLEDGECODE",
"url": "https://github.com/knowledgecode"
},
"type": "module",
"exports": {
".": {
"import": "./dist/esm/jquery-param.mjs",
"require": "./dist/umd/jquery-param.js",
"browser": "./jquery-param.min.js"
}
},
"main": "dist/umd/jquery-param.js",
"module": "dist/esm/jquery-param.mjs",
"browser": "jquery-param.min.js",
"sideEffects": false,
"files": [
"LICENSE",
"README.md",
"dist/**/*",
"jquery-param.min.js"
],
"scripts": {
"build": "rollup -c",
"build:watch": "rollup -c -w",
"test": "npm run build && mocha test/test.mjs",
"test:watch": "npm run test -- --watch",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@rollup/plugin-terser": "^0.4.4",
"chai": "^5.3.1",
"jquery": "^3.7.1",
"jsdom": "^26.1.0",
"mocha": "^11.7.1",
"rollup": "^4.46.4"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}