-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.79 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
{
"name": "@freakyfelt/could-could",
"version": "3.0.2",
"description": "An authorization library built on top of JsonLogic",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"engines": {
"node": ">= 18.0.0"
},
"scripts": {
"benchmark": "tsx benchmarks/run.ts > benchmarks/results.md",
"build": "tsup-node",
"build:check": "tsc --noEmit",
"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 build:check",
"posttest": "npm run build:check && npm run lint:fix && npm run format",
"posttest:ci": "npm run lint && npm run format:check",
"test": "tsx --test lib/**/*.test.ts",
"test:ci": "tsx --test lib/**/*.test.ts",
"test:watch": "tsx --test --watch lib/**/*.test.ts"
},
"keywords": [],
"author": "Bruce Felt",
"license": "ISC",
"dependencies": {
"ajv": "^8.11.0",
"json-logic-js": "^2.0.2",
"just-has": "^2.3.0",
"just-unique": "^4.2.0",
"lru-cache": "^11.0.0"
},
"devDependencies": {
"@eslint/js": "^9.10.0",
"@tsconfig/node18": "^18.2.4",
"@types/benchmark": "^2.1.2",
"@types/jest": "^29.2.2",
"@types/json-logic-js": "^2.0.1",
"@types/node": "^22.0.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"benchmark": "^2.1.4",
"eslint": "^9.10.0",
"eslint-config-prettier": "^10.0.1",
"globals": "^15.9.0",
"prettier": "^3.0.0",
"tsup": "^8.0.2",
"tsx": "^4.10.3",
"typescript": "^5.4.5",
"typescript-eslint": "^8.5.0"
}
}