-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.23 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "grule",
"version": "0.1.1",
"description": "A simple and powerful mechanism for validating rules in JSON.",
"main": "dist/index.js",
"module": "dist/index.js",
"typings": "dist/index.d.ts",
"author": {
"name": "Romullo",
"email": "[email protected]",
"url": "https://hiukky.com"
},
"bugs": {
"url": "https://github.com/hiukky/grule/issues"
},
"homepage": "https://github.com/hiukky/grule#readme",
"repository": {
"type": "git",
"url": "https://github.com/hiukky/grule"
},
"scripts": {
"cm": "cz",
"prepare": "husky install",
"prebuild": "rimraf dist",
"build": "esbuild index.ts --outfile=dist/index.js --bundle --platform=node --minify",
"dev": "tsnd --respawn index.ts",
"postbuild": "tsc -p tsconfig.json",
"lint": "eslint . --ext .ts",
"lint:fix": "yarn lint --fix",
"test": "jest",
"test:cov": "jest --coverage",
"format": "prettier --write \"**/*.ts\"",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable"
},
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^12.1.1",
"@commitlint/config-conventional": "^12.1.1",
"@types/jest": "^26.0.23",
"@types/node": "^15.0.2",
"@types/type-check": "^0.3.27",
"@typescript-eslint/eslint-plugin": "^4.22.1",
"@typescript-eslint/parser": "^4.22.1",
"commitizen": "^4.2.3",
"cz-conventional-changelog": "3.3.0",
"esbuild": "^0.11.19",
"eslint": "^7.25.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.22.1",
"husky": "^6.0.0",
"jest": "^26.6.3",
"pinst": "^2.1.6",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"ts-jest": "^26.5.6",
"ts-node-dev": "^1.1.6",
"typescript": "^4.2.4"
},
"dependencies": {
"chork": "^0.1.0"
},
"size-limit": [
{
"path": "dist/index.js",
"import": "{ createStore }",
"limit": "500 ms"
}
],
"files": [
"dist"
],
"keywords": [
"grule",
"rules",
"roles",
"rules-json",
"engine",
"rete",
"policy",
"requirement",
"validation"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}