-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
41 lines (41 loc) · 957 Bytes
/
package.json
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
{
"name": "qs-stringify",
"description": "Simple query stringify with nesting.",
"version": "1.2.1",
"author": "Renée Kooi <[email protected]>",
"bugs": {
"url": "https://github.com/goto-bus-stop/qs-stringify/issues"
},
"devDependencies": {
"eslint": "^9.12.0",
"has-dynamic-import": "^2.1.1",
"neostandard": "^0.12.1",
"tape": "^5.0.0"
},
"homepage": "https://github.com/goto-bus-stop/qs-stringify",
"keywords": [
"format",
"qs",
"querystring",
"stringify"
],
"license": "MIT",
"main": "index.js",
"exports": {
"./package.json": "./package.json",
".": {
"import": "./index.mjs",
"default": "./index.js",
"types": "./index.d.ts"
}
},
"repository": {
"type": "git",
"url": "https://github.com/goto-bus-stop/qs-stringify.git"
},
"scripts": {
"lint": "eslint .",
"tests-only": "node test",
"test": "npm run lint && npm run tests-only"
}
}