-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.04 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.04 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
{
"name": "rsql-mongodb",
"version": "3.0.2",
"description": "Converting RSQL queries to MongoDB queries",
"main": "rsql-mongodb.js",
"types": "types/rsql-mongodb.d.ts",
"scripts": {
"lint": "standard",
"test": "mocha -- -R spec --bail",
"test-cov": "nyc --reporter=text --reporter=html mocha --recursive --exit",
"test-cov-ci": "nyc npm test && nyc report --reporter=text-lcov | coveralls"
},
"author": "Fizcko",
"contributors": [
"woigl (https://github.com/woigl)",
"zishone (https://github.com/zishone)"
],
"license": "MIT",
"repository": "https://github.com/Fizcko/rsql-mongodb",
"bugs": {
"url": "https://github.com/Fizcko/rsql-mongodb/issues"
},
"homepage": "https://github.com/Fizcko/rsql-mongodb",
"keywords": [
"rsql",
"fiql",
"mongo",
"mongoDB",
"parser",
"search",
"query",
"rest",
"restful"
],
"devDependencies": {
"chai": "4.2.0",
"coveralls": "3.0.5",
"mocha": "6.2.0",
"nyc": "14.1.1"
},
"dependencies": {
"bson": "6.10.4"
}
}