-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.6 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
{
"name": "konditions",
"version": "0.0.0",
"description": "A simple and customizable JSON-based condition engine in TypeScript (e.g. GreaterThan, StringLike, Every, Some)",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"scripts": {
"clean": "rimraf ./dist && rimraf ./coverage",
"lint": "eslint 'src/**/*.ts'",
"lint:fix": "eslint --fix 'src/**/*.ts'",
"compile:watch": "tsc --watch",
"compile": "tsc",
"prebuild": "npm run clean && npm run lint && npm run test",
"prepare": "npm run build",
"build": "npm run compile",
"test": "jest --verbose --coverage"
},
"devDependencies": {
"@types/jest": "^26.0.9",
"@typescript-eslint/eslint-plugin": "^3.8.0",
"@typescript-eslint/parser": "^3.8.0",
"eslint": "^7.6.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.2.2",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"ts-jest": "^26.1.4",
"ts-node": "^8.10.2",
"typescript": "^4.1.0-dev.20200808"
},
"dependencies": {
"zod": "^1.10.2"
},
"author": "Lazhar Ichir",
"license": "GNU General Public License v3.0",
"homepage": "https://github.com/lazharichir/konditions#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/lazharichir/konditions.git"
},
"bugs": {
"url": "https://github.com/lazharichir/konditions/issues"
},
"keywords": [
"conditions",
"json conditions",
"conditions engine",
"conditional",
"rules engine",
"iam",
"policies",
"pbac"
]
}