-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 2 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
{
"name": "json-expressions",
"version": "0.15.0",
"description": "A JavaScript expression engine for JSON-based dynamic computations and function composition",
"main": "./dist/index.cjs",
"module": "./src/index.js",
"types": "./index.d.ts",
"type": "module",
"keywords": [
"expressions",
"json",
"functional",
"composition",
"evaluation",
"dynamic",
"rules-engine"
],
"author": "Jake Sower",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jakesower/json-expressions.git"
},
"bugs": {
"url": "https://github.com/jakesower/json-expressions/issues"
},
"homepage": "https://github.com/jakesower/json-expressions#readme",
"files": [
"src/",
"dist/index.cjs",
"index.d.ts",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"sideEffects": false,
"dependencies": {
"date-fns": "^4.1.0",
"didyoumean": "^1.2.2",
"es-toolkit": "^1.41.0"
},
"scripts": {
"build": "npm run clean && rollup -c",
"clean": "rm -rf dist && mkdir -p dist",
"test": "vitest run --coverage",
"test:watch": "vitest",
"bench": "node benchmarks/performance.js",
"format:check": "prettier --check \"src/**/*.{js,jsx,ts,tsx,json,css,md}\" \"test/**/*.{js,jsx,ts,tsx,json,css,md}\"",
"format:fix": "prettier --write \"src/**/*.{js,jsx,ts,tsx,json,css,md}\" \"test/**/*.{js,jsx,ts,tsx,json,css,md}\"",
"lint": "eslint src/ test/",
"lint:fix": "eslint --fix src/ test/",
"prepublishOnly": "npm run lint && npm run test && npm run build"
},
"exports": {
".": {
"types": "./index.d.ts",
"import": "./src/index.js",
"require": "./dist/index.cjs"
}
},
"engines": {
"node": ">=16.0.0"
},
"devDependencies": {
"@eslint/js": "^9.38.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@vitest/coverage-v8": "^4.0.3",
"eslint": "^9.38.0",
"eslint-config-prettier": "^10.1.8",
"prettier": "^3.6.2",
"rollup": "^4.52.5",
"vitest": "^4.0.3"
}
}