forked from greenpioneersolutions/express-query-parameters
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 1.8 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "express-query-parameters",
"version": "0.1.0",
"description": "parse general queries to your express routes. We are adding extra support for sql & mongoose.",
"main": "index.js",
"scripts": {
"test": "npm run mocha && npm run standard",
"mocha": "node node_modules/.bin/mocha test/mocha.test.js",
"standard": "node_modules/.bin/standard"
},
"standard": {
"globals": [
"angular",
"toastr",
"moment",
"self",
"_",
"describe",
"it",
"__dirname",
"localStorage",
"io",
"expect",
"inject",
"before"
]
},
"repository": {
"type": "git",
"url": "https://github.com/greenpioneersolutions/express-query-parameters.git"
},
"keywords": [
"greenpioneersolutions",
"green pioneer",
"express",
"req.query",
"query",
"query parameters",
"express query parameters",
"parameters",
"api"
],
"contributors": [
{
"name": "greenpioneersolutions",
"email": "[email protected]",
"web": "https://github.com/greenpioneersolutions"
}
],
"maintainers": [
{
"name": "greenpioneersolutions",
"web": "https://github.com/greenpioneersolutions?tab=members"
}
],
"author": "Green Pioneer <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/greenpioneersolutions/express-query-parameters/issues"
},
"homepage": "https://github.com/greenpioneersolutions/express-query-parameters",
"dependencies": {
"auto-parse": "^1.0.0",
"lodash": "^4.5.1",
"run-auto": "^2.0.0",
"set-or-get": "^1.2.4"
},
"devDependencies": {
"chai": "^3.4.1",
"mocha": "^2.3.4",
"standard": "^5.3.1",
"supertest": "^1.1.0"
},
"engines": {
"node": ">= 0.10.0"
}
}