forked from justinlettau/js-rules-engine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.41 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
{
"name": "js-rules-engine",
"description": "JavaScript rules engine for validating data object structures.",
"version": "1.1.1",
"keywords": [
"rules engine",
"rules",
"engine",
"javascript",
"json"
],
"author": {
"name": "Justin Lettau",
"email": "[email protected]",
"url": "https://justinlettau.com"
},
"license": "MIT",
"homepage": "https://github.com/justinlettau/js-rules-engine",
"repository": {
"type": "git",
"url": "https://github.com/justinlettau/js-rules-engine"
},
"bugs": {
"url": "https://github.com/justinlettau/js-rules-engine/issues"
},
"main": "dist/index.js",
"types": "dist/index.d.js",
"files": [
"dist/"
],
"scripts": {
"lint": "eslint . --ext .js,.ts",
"test": "jest",
"build": "tsc -p ./tsconfig.json",
"prepublishOnly": "npm run build",
"format": "prettier --write ."
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"devDependencies": {
"@types/jest": "^26.0.24",
"@typescript-eslint/eslint-plugin": "^4.29.0",
"@typescript-eslint/parser": "^4.29.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"husky": "^7.0.1",
"jest": "^27.0.6",
"prettier": "^2.3.2",
"pretty-quick": "^3.1.1",
"ts-jest": "^27.0.4",
"ts-node": "^10.1.0",
"typescript": "^4.3.5"
},
"dependencies": {
"ts-dot-prop": "^1.4.3"
}
}