forked from thoward/lucene-query-parser.js
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
33 lines (33 loc) · 823 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
{
"name": "lucene-query-parser",
"version": "0.0.2",
"description": "Lucene Query Parser for Javascript created using PEG.js",
"main": "lucene-query-parser.js",
"directories": {
"test": "test"
},
"scripts": {
"build": "./node_modules/.bin/pegjs ./lucene-query.grammar lucene-query-parser.js",
"test": "./node_modules/.bin/jasmine-node ./test/ --verbose",
"prepublish": "npm run-script build && npm test"
},
"repository": {
"type": "git",
"url": "git://github.com/mahnunchik/lucene-query-parser.git"
},
"keywords": [
"lucene",
"query",
"parser",
"pegjs"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/mahnunchik/lucene-query-parser/issues"
},
"devDependencies": {
"pegjs": "0.7.x",
"jasmine-node": "1.10.x"
}
}