-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 884 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": "rules-engine",
"version": "1.0.0",
"repository": "https://github.com/garydouglasalway/rules-engine.git",
"author": "Gary Alway",
"license": "MIT",
"scripts": {
"format": "prettier src --write",
"typecheck": "tsc --noEmit",
"build": "tsc --project tsconfig.json",
"lint": "eslint .",
"test": "jest ./src --coverage"
},
"dependencies": {
"json-rules-engine": "^6.1.2",
"ramda": "^0.27.1"
},
"devDependencies": {
"@types/faker": "^5.5.8",
"@types/jest": "^27.0.1",
"@types/json-rules-engine": "^4.1.0",
"@types/node": "^16.9.4",
"@types/ramda": "^0.27.44",
"@typescript-eslint/eslint-plugin": "^4.31.1",
"@typescript-eslint/parser": "^4.31.1",
"eslint": "^7.32.0",
"faker": "^5.5.3",
"jest": "^27.2.0",
"prettier": "^2.4.1",
"ts-jest": "^27.0.5",
"typescript": "^4.4.3"
}
}