-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
72 lines (72 loc) · 2.48 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
{
"name": "@briza/illogical",
"version": "1.6.1",
"description": "A micro conditional javascript engine used to parse the raw logical and comparison expressions, evaluate the expression in the given data context, and provide access to a text form of the given expressions.",
"main": "lib/illogical.js",
"module": "lib/illogical.esm.js",
"typings": "types/index.d.ts",
"files": [
"/lib",
"/types",
"changelog.md"
],
"author": {
"name": "David Horak",
"email": "[email protected]"
},
"license": "MIT",
"scripts": {
"type-check": "tsc --noEmit",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "rollup -c",
"build": "npm run build:types && npm run build:js",
"docs": "typedoc src && git checkout docs/.nojekyll",
"test": "jest",
"lint": "eslint --max-warnings 0 \"src/**/*.{ts,js}\"",
"lint:fix": "eslint --max-warnings 0 \"src/**/*.{ts,js}\" --fix",
"prepublishOnly": "npm run test && npm run build",
"check-licenses": "license-checker --summary --excludePrivatePackages --onlyAllow \"MIT;MIT OR X11;Apache-2.0;ISC;BSD-3-Clause;BSD-2-Clause;CC-BY-4.0;Public Domain;BSD;CC-BY-3.0;CC0-1.0;Python-2.0;BlueOak-1.0.0;Unlicense\""
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/briza-insurance/illogical.git"
},
"bugs": {
"url": "https://github.com/briza-insurance/illogical/issues"
},
"homepage": "https://github.com/briza-insurance/illogical",
"keywords": [
"json",
"logic",
"comparison",
"rules"
],
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/preset-env": "^7.25.3",
"@babel/preset-typescript": "^7.24.7",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-eslint": "^9.0.5",
"@rollup/plugin-node-resolve": "^15.2.3",
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^8.0.1",
"@typescript-eslint/parser": "^8.0.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-promise": "^7.1.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"jest": "^29.7.0",
"license-checker": "^25.0.1",
"prettier": "^3.3.3",
"rollup": "^4.20.0",
"ts-jest": "^29.2.4",
"typedoc": "^0.26.5",
"typescript": "^5.5.4"
}
}