-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
71 lines (71 loc) · 1.89 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "json-expression-eval",
"version": "7.1.0",
"description": "json serializable rule engine / boolean expression evaluator",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": "^14 || ^16 || ^18 || ^20"
},
"scripts": {
"test": "yarn lint && yarn test:tsd && yarn test:cover",
"test:tsd": "tsd",
"test:unit": "mocha --config src/test/.mocharc.json",
"build": "yarn lint && yarn compile",
"compile": "./node_modules/.bin/tsc",
"test:cover": "nyc --reporter=lcov --reporter=text-summary mocha --config src/test/.mocharc.json",
"lint": "tslint -c tslint.json 'src/**/*.ts' 'test/**/*.ts'",
"ci": "yarn lint && yarn compile && yarn test:tsd && yarn test:cover"
},
"repository": {
"type": "git",
"url": "git+https://github.com/regevbr/json-expression-eval.git"
},
"keywords": [
"evaluate",
"serializable",
"expression",
"json",
"dynamic",
"function",
"boolean",
"node",
"js",
"javascript",
"eval",
"rule",
"engine",
"rule-engine",
"typescript"
],
"author": "Regev Brody <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/regevbr/json-expression-eval/issues"
},
"homepage": "https://github.com/regevbr/json-expression-eval#readme",
"tsd": {
"directory": "src/test/types"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "1.0.2",
"@types/chai": "^4.3.4",
"@types/chai-as-promised": "^7.1.5",
"@types/mocha": "^10.0.1",
"@types/node": "^18.14.2",
"@types/underscore": "^1.11.4",
"chai": "^4.3.7",
"chai-as-promised": "^7.1.1",
"mocha": "^10.2.0",
"moment": "^2.29.4",
"nyc": "^15.1.0",
"source-map-support": "^0.5.21",
"ts-node": "^10.9.1",
"tsd": "^0.25.0",
"tslint": "^6.1.3",
"typescript": "^4.9.5"
},
"dependencies": {
"ts-toolbelt": "^9.6.0"
}
}