-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.51 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
47
48
49
50
51
52
53
54
{
"name": "@abdullah2993/expression-parser",
"version": "1.1.5",
"description": "An expression evaluator written in typescript with the goal to support SQL like WHERE clauses.",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"lint": "tsc --noEmit && eslint --quiet --fix",
"test": "jasmine-ts --config=jasmine.json",
"coverage": "nyc -r text -e .ts -x \"tests/*.spec.ts\" npm run test",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/abdullah2993/expression-parser.git"
},
"author": "abdullah2993",
"license": "MIT",
"bugs": {
"url": "https://github.com/abdullah2993/expression-parser/issues"
},
"files": [
"dist/**"
],
"types": "dist/index.d.ts",
"keywords": [
"parser",
"expression",
"filters",
"expression-evaluator",
"whereclause",
"where",
"conditions",
"where clause",
"where-clause",
"ast",
"sql where"
],
"homepage": "https://github.com/abdullah2993/expression-parser#readme",
"devDependencies": {
"@types/jasmine": "^3.8.2",
"@typescript-eslint/eslint-plugin": "^4.29.0",
"@typescript-eslint/parser": "^4.29.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-plugin-import": "^2.23.4",
"jasmine": "^3.8.0",
"jasmine-ts": "^0.4.0",
"nyc": "^15.1.0",
"ts-node": "^10.1.0",
"typescript": "^4.3.5"
}
}