-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
83 lines (83 loc) · 2.32 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
{
"name": "@elite-libs/rules-machine",
"version": "1.6.0",
"description": "📐 A fast serializable logical Rules Engine.",
"type": "commonjs",
"homepage": "https://github.com/elite-libs/rules-machine",
"repository": {
"type": "git",
"url": "git://github.com/elite-libs/rules-machine.git"
},
"source": "./src/index.ts",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"browser": "./dist/index.global.js",
"types": "./dist/index.d.ts",
"private": false,
"packageManager": "[email protected]",
"engineStrict": true,
"engines": {
"yarn": ">=1.22.17",
"node": ">=12.0.0"
},
"scripts": {
"build": "npx rimraf ./dist/* && ./scripts/build.sh",
"prepublishOnly": "NODE_ENV=production yarn run build && jest",
"release:npm": "npm publish --access public --registry https://registry.npmjs.org/",
"release:github": "npm publish --access public --registry https://npm.pkg.github.com/",
"test": "yarn run build && jest",
"test:coverage": "yarn run build && jest --coverage",
"lint": "eslint .",
"format": "prettier --write '**/*.{js,ts,tsx,css,scss}'"
},
"keywords": [
"elite-libs",
"elitelibs",
"Rules Engine",
"JSON Rules Engine",
"JSON Rules",
"JSON",
"JSON-based",
"JSON-based Rules Engine",
"JSON-based Rules",
"JSON-based Rules Engine",
"YAML Rules Engine"
],
"devDependencies": {
"@types/debug": "^4.1.7",
"@types/jest": "26.x.x",
"@types/lodash": "^4.14.178",
"@types/node": "^14.0.0",
"@typescript-eslint/eslint-plugin": "^5.42.0",
"@typescript-eslint/parser": "^5.42.0",
"@typescript-eslint/utils": "^5.42.0",
"eslint": "^8.26.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard-with-typescript": "^23.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.4.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"jest": "26.x.x",
"prettier": "^2.7.1",
"ts-jest": "26.x.x",
"ts-node": "^10.9.1",
"tsup": "^6.4.0",
"typescript": "4.8.4"
},
"dependencies": {
"debug": "^4.3.3",
"expressionparser": "^1.1.5",
"lodash": "^4.17.21",
"ms": "^2.1.3"
},
"author": {
"name": "@justsml",
"url": "https://danlevy.net"
},
"license": "BSD-3-Clause",
"files": [
"dist",
"*.md"
]
}