-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
44 lines (44 loc) · 1015 Bytes
/
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
{
"name": "mongo-url-utils",
"version": "1.5.0",
"description": "url parser utilities for connecting with mongodb",
"main": "lib/mongo-url.js",
"scripts": {
"test": "make release",
"prepublish": "(./node_modules/.bin/in-publish && make release) || ./node_modules/.bin/not-in-publish"
},
"repository": {
"type": "git",
"url": "https://github.com/seangarner/mongo-url-utils.git"
},
"bugs": {
"url": "https://github.com/seangarner/mongo-url-utils/issues"
},
"keywords": [
"mongo",
"mongodb",
"jsonapi",
"url",
"query",
"parser",
"parse",
"peg",
"pegjs"
],
"author": "Sean Garner <[email protected]>",
"license": "MIT",
"dependencies": {
"is": "^3.0.1",
"safe-regex": "^1.1.0"
},
"devDependencies": {
"chai": "^4.1.2",
"in-publish": "^2.0.0",
"jshint": "^2.7.0",
"mocha": "^4.0.1",
"mongodb": "^2.2.10",
"mongodb-extended-json": "^1.5.3",
"nodemon": "^1.3.7",
"pegjs": "^0.10.0"
}
}