forked from Turistforeningen/node-mongo-querystring
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.68 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
55
56
57
58
59
60
{
"name": "mongo-querystring",
"version": null,
"description": "Parse and pass URL queries to MongoDB query",
"main": "index.js",
"files": [
"index.js",
"examples",
"test.js"
],
"scripts": {
"codacy-coverage": "codacy-coverage",
"cover": "istanbul cover --report lcovonly ./node_modules/.bin/_mocha -- -R spec test.js examples/test.js",
"grunt:watch": "grunt watch",
"lint": "eslint index.js test.js examples",
"nsp": "nsp check",
"semantic-release": "semantic-release",
"test": "mocha -c -b --check-leaks -R tap test.js examples/test.js",
"test:watch": "mocha -w -c -b --check-leaks -R progress test.js examples/test.js",
"greenkeeper-postpublish": "greenkeeper-postpublish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Turistforeningen/node-mongo-querystring.git"
},
"keywords": [
"query",
"querystring",
"parser",
"uri",
"url",
"mongo",
"mongodb"
],
"author": "Hans Kristian Flaatten <hans@starefossen.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Turistforeningen/node-mongo-querystring/issues"
},
"homepage": "https://github.com/Turistforeningen/node-mongo-querystring#readme",
"devDependencies": {
"JSONStream": "^1.1.1",
"codacy-coverage": "^2.0.0",
"eslint": "^3.1.1",
"eslint-config-airbnb-base": "^10.0.1",
"eslint-plugin-import": "^2.2.0",
"express": "^4.13.4",
"greenkeeper-postpublish": "^1.0.0",
"istanbul": "^0.4.3",
"mocha": "^3.0.0",
"mongodb": "^2.1.18",
"nsp": "^2.4.0",
"qs": "^6.2.0",
"semantic-release": "^4.3.5",
"supertest": "^2.0.0"
},
"engines": {
"node": ">=4.0.0"
}
}