-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 983 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": "nested-query-params",
"version": "1.1.1",
"description": "Rack like parsing of nested query parameters",
"scripts": {
"prepublish": "npm run build",
"build": "rm -r lib && npx tsc -p ./",
"format": "prettier --write .",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jamesdphillips/nested-query-params.git"
},
"keywords": [
"query",
"string",
"parser"
],
"main": "lib/main.js",
"directories": {
"lib": "lib"
},
"files": [
"lib"
],
"author": "James Phillips <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jamesdphillips/nested-query-params/issues"
},
"homepage": "https://github.com/jamesdphillips/nested-query-params#readme",
"devDependencies": {
"@types/jest": "^27.4.1",
"jest": "^27.5.1",
"jest-junit": "^13.0.0",
"prettier": "^2.5.1",
"ts-jest": "^27.1.3",
"typescript": "^4.6.2"
}
}