-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 979 Bytes
/
package.json
File metadata and controls
47 lines (47 loc) · 979 Bytes
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
{
"name": "jsre",
"version": "0.6.0",
"description": "JSON based rules engine",
"main": "index.js",
"scripts": {
"test": "jest --verbose",
"coverage": "jest --coverage",
"badges": "npm run coverage && jest-coverage-badges --output \"./badges\""
},
"jest": {
"coverageReporters": [
"json-summary",
"text",
"lcov"
]
},
"engines": {
"node": ">=12.11.0"
},
"engineStrict": true,
"repository": {
"type": "git",
"url": "git+https://github.com/clearly/jsre.git"
},
"keywords": [
"json",
"rules",
"engine"
],
"author": "Aaron Bawcom",
"license": "MIT",
"bugs": {
"url": "https://github.com/clearly/jsre/issues"
},
"homepage": "https://github.com/clearly/jsre#readme",
"devDependencies": {
"jest": "^26.4.2",
"jest-coverage-badges": "^1.1.2"
},
"dependencies": {
"ajv": "^6.10.2",
"js-yaml": "^3.13.1",
"lodash": "^4.17.20",
"traverse": "^0.6.6"
}
}