-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
23 lines (23 loc) · 851 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
{
"name": "mongodb_logical_expr_parser",
"description": "```javascript\r build_ast(\"a&&(b||c)\")\r =>\r {\r $and: [\r { tags: \"a\" },\r {\r $or: [\r { tags: \"b\" },\r { tags: \"c\" }\r ]\r }\r ]\r }\r ```",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"build": "tsc --project tsconfig.json",
"start":"node dist/parse.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/qwertyforce/mongodb_logical_expression_parser.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/qwertyforce/mongodb_logical_expression_parser/issues"
},
"homepage": "https://github.com/qwertyforce/mongodb_logical_expression_parser#readme",
"dependencies": {
"typescript": "^4.1.5"
}
}