-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
54 lines (54 loc) · 1.54 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "api-query-params",
"version": "5.4.0",
"description": "Convert query parameters from API urls to MongoDB queries",
"main": "dist/cjs/index.js",
"types": "dist/cjs/types.d.ts",
"files": [
"dist/"
],
"scripts": {
"build": "babel ./src/index.js --out-file ./dist/cjs/index.js && shx cp ./types.d.ts ./dist/cjs/",
"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",
"prebuild": "npm run lint && rimraf ./dist && mkdirp ./dist/cjs",
"prepublish": "npm run build",
"release": "np",
"test": "ava"
},
"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": {
"@babel/cli": "7.16.0",
"@babel/core": "7.16.0",
"@babel/plugin-proposal-object-rest-spread": "7.16.0",
"@babel/preset-env": "7.16.4",
"@babel/register": "7.16.0",
"ava": "3.15.0",
"coveralls": "3.1.1",
"eslint": "7.9.0",
"eslint-config-gowento": "7.0.0",
"mkdirp": "1.0.4",
"np": "7.6.0",
"nyc": "15.1.0",
"prettier": "2.4.1",
"rimraf": "3.0.2",
"shx": "^0.3.3"
}
}