forked from thoward/lucene-query-parser.js
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
46 lines (46 loc) · 1.14 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
{
"name": "lucene-queryparser",
"version": "3.0.0",
"description": "Lucene Query Parser for Javascript created using PEG.js",
"main": "lib/lucene-queryparser.js",
"scripts": {
"build": "pegjs lib/lucene-query.grammar lib/lucene-queryparser.js",
"test": "./node_modules/.bin/jasmine-node ./spec/ --verbose",
"prepublish": "npm run build && npm test"
},
"repository": {
"type": "git",
"url": "git://github.com/xomyaq/lucene-queryparser.git"
},
"keywords": [
"lucene",
"query",
"parser",
"pegjs"
],
"author": {
"name": "Troy Howard",
"email": "thoward37@gmail.com",
"url": "http://github.com/thoward"
},
"contributors": [{
"name": "Eugeny Vlasenko",
"email": "mahnunchik@gmail.com",
"url": "http://mahnunchik.tumblr.com/"
}, {
"name": "Ilnur Khalilov",
"email": "ilnur.khalilov@gmail.com",
"url": "https://github.com/xomyaq"
}],
"license": "Apache 2.0",
"bugs": {
"url": "https://github.com/xomyaq/lucene-queryparser/issues"
},
"dependencies": {
"amdefine": ">=0.0.2"
},
"devDependencies": {
"pegjs": "0.7.x",
"jasmine-node": "1.10.x"
}
}