-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 781 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 781 Bytes
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
{
"name": "filtres",
"version": "0.1.4",
"description": "A simple, safe, ElasticSearch Query compiler",
"main": "filtres.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "mocha tests/",
"build": "cat src/filtres.js src/jison.js > filtres.js && uglify -s filtres.js -o filtres.min.js",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git://github.com/abeisgreat/FiltrES.git"
},
"keywords": [
"elasticsearch",
"query",
"dsl"
],
"author": "Abraham Haskins <abe@rigidflame.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/abeisgreat/FiltrES/issues"
},
"devDependencies": {
"elasticsearchclient": "~0.5.3",
"mocha": "~2.0.1",
"uglify": "~0.1.1"
}
}