-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.28 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.28 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
{
"name": "node-qs-serialization",
"version": "1.1.0",
"description": "Serialization and deserialization of an URL its QueryString based on and compatible with jQuery's $.param method",
"main": "index.js",
"files": [
"index.js",
"lib",
"LICENSE",
"README.md",
"SECURITY.md"
],
"engines": {
"node": ">=0.10"
},
"scripts": {
"lint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "npm run lint && npm run format:check && node --test test/*.spec.js",
"test:smoke": "node test/smoke-floor.js",
"test:floor": "docker run --rm --platform linux/amd64 -v \"$PWD\":/app -w /app node:4 sh -c 'node test/smoke-floor.js'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/edwardsmit/node-qs-serialization.git"
},
"bugs": {
"url": "https://github.com/edwardsmit/node-qs-serialization/issues"
},
"homepage": "https://github.com/edwardsmit/node-qs-serialization",
"keywords": [
"nodejs",
"jquery",
"deparam",
"param",
"querystring"
],
"author": "Edward Smit <edwardsmit@xs4all.nl>",
"license": "MIT",
"dependencies": {
"qs": "^6.15.2"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"eslint": "^10.4.0",
"prettier": "^3.8.3"
}
}