-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.27 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.27 KB
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
{
"name": "@freakyfelt/could-could",
"version": "4.0.1",
"description": "An authorization library built on top of JsonLogic",
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "dist/index.d.mts",
"type": "module",
"engines": {
"node": ">= 20.17.0"
},
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"./package.json": "./package.json"
},
"scripts": {
"benchmark": "tsx benchmarks/run.ts > benchmarks/results.md",
"build": "tsdown",
"build:check": "tsdown --publint --attw",
"ci": "npm run pretest:ci && npm run test:ci && npm run posttest:ci",
"clean": "rm -rf dist",
"format": "prettier -w lib benchmarks",
"format:check": "prettier -c lib benchmarks",
"lint": "eslint lib benchmarks",
"lint:fix": "eslint --fix lib benchmarks",
"prepublishOnly": "npm run build",
"pretest:ci": "npm run types:check",
"posttest": "npm run types:check && npm run lint:fix && npm run format",
"posttest:ci": "npm run lint && npm run format:check && npm run build:check",
"test": "tsx --test lib/**/*.test.ts",
"test:ci": "tsx --test lib/**/*.test.ts",
"test:watch": "tsx --test --watch lib/**/*.test.ts",
"types:check": "tsc --noEmit"
},
"keywords": [],
"author": "Bruce Felt",
"license": "ISC",
"files": [
"dist"
],
"dependencies": {
"ajv": "^8.18.0",
"json-logic-js": "^2.0.2",
"just-has": "^2.3.0",
"just-unique": "^4.2.0",
"lru-cache": "^11.3.5"
},
"devDependencies": {
"@arethetypeswrong/core": "^0.18.2",
"@eslint/js": "^10.0.1",
"@tsconfig/node20": "^20.1.9",
"@types/benchmark": "^2.1.2",
"@types/jest": "^30.0.0",
"@types/json-logic-js": "^2.0.1",
"@types/node": "^20.19.39",
"@typescript-eslint/eslint-plugin": "^8.58.1",
"@typescript-eslint/parser": "^8.58.1",
"benchmark": "^2.1.4",
"eslint": "^10.2.0",
"eslint-config-prettier": "^10.1.8",
"globals": "^17.5.0",
"prettier": "^3.8.2",
"publint": "^0.3.18",
"tsdown": "^0.21.7",
"tsx": "^4.21.0",
"typescript": "^6.0.2",
"typescript-eslint": "^8.58.1"
}
}