-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
61 lines (61 loc) · 1.54 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
{
"name": "ruls",
"version": "1.2.0",
"description": "Typesafe rules engine with JSON encoding",
"keywords": [
"typescript",
"rules",
"rule engine",
"json",
"typesafe"
],
"homepage": "https://github.com/decs/ruls#readme",
"license": "MIT",
"author": {
"name": "André Costa",
"email": "andrefonsecacosta@gmail.com"
},
"files": [
"/dist"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/decs/ruls.git"
},
"scripts": {
"prebuild": "rm -rf dist",
"build": "tsc -p tsconfig.build.json",
"prepare": "yarn build",
"lint": "eslint src --fix",
"format": "prettier --write src",
"test": "jest src",
"postinstall": "husky install",
"prepack": "pinst --disable",
"postpack": "pinst --enable"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.59.1",
"@typescript-eslint/parser": "^5.59.1",
"eslint": "^8.2.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-sort-keys": "^2.3.5",
"husky": "^8.0.0",
"jest": "^29.5.0",
"pinst": "^3.0.0",
"prettier": "^2.8.8",
"ts-jest": "^29.1.0",
"typescript": "^5.0.4",
"zod": "^3.21.4"
},
"dependencies": {
"@decs/typeschema": "^0.5.0"
}
}