-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.18 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.18 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": "api-query-params",
"version": "6.1.0",
"description": "Convert query parameters from API urls to MongoDB queries",
"main": "src/index.js",
"types": "types.d.ts",
"type": "module",
"files": [
"src/",
"types.d.ts"
],
"scripts": {
"coverage": "nyc npm test && nyc report --reporter=html",
"coveralls": "nyc npm test && nyc report --reporter=text-lcov | coveralls",
"lint": "eslint ./src ./test",
"postcoveralls": "rimraf ./coverage",
"prepublish": "yarn run test",
"release": "np",
"test": "ava"
},
"engines": {
"node": ">=18"
},
"repository": {
"type": "git",
"url": "git+https://github.com/loris/api-query-params.git"
},
"keywords": [
"node",
"api",
"query parameters",
"mongodb"
],
"author": "Loris Guignard <loris.guignard@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/loris/api-query-params/issues"
},
"homepage": "https://github.com/loris/api-query-params#readme",
"devDependencies": {
"ava": "^6.4.1",
"coveralls": "^3.1.1",
"eslint": "^9.39.2",
"np": "^10.0.5",
"nyc": "^17.0.0",
"prettier": "^3.7.4",
"rimraf": "^6.1.2"
}
}