-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
28 lines (28 loc) · 869 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
{
"name": "mongodb-to-elasticsearch-query",
"version": "0.1.0",
"description": "A module to convert simple mongodb queries into elasticsearch queries",
"main": "index.js",
"scripts": {
"test": "./node_modules/.bin/mocha ./test/root.js ./test --recursive --timeout 150000"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Shane-Neeley/mongodb-to-elasticsearch-query.git"
},
"keywords": [
"mongodb",
"elasticsearch"
],
"author": "Shane Neeley <shane.neeley@gmail.com> (http://www.molecularmatch.com)",
"license": "ISC",
"bugs": {
"url": "https://github.com/Shane-Neeley/mongodb-to-elasticsearch-query/issues"
},
"homepage": "https://github.com/Shane-Neeley/mongodb-to-elasticsearch-query#readme",
"devDependencies": {
"underscore": "^1.8.3",
"mocha": "^3.2.0",
"should": "^11.1.1"
}
}