-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
73 lines (73 loc) · 2.42 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
{
"name": "fig-tree-evaluator",
"version": "2.18.1",
"description": "Module to evaluate JSON-structured expression trees",
"main": "build/index.cjs.js",
"module": "build/index.esm.js",
"sideEffects": false,
"types": "build/index.d.ts",
"exports": {
"types": "./build/index.d.ts",
"import": "./build/index.esm.js",
"require": "./dist/index.cjs.js"
},
"files": [
"build"
],
"repository": "git+https://github.com/CarlosNZ/fig-tree-evaluator.git",
"author": "Carl Smith <[email protected]>",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-typescript": "^11.1.5",
"@testing-library/jest-dom": "^6.1.3",
"@testing-library/react": "^14.0.0",
"@types/jest": "^29.5.5",
"@types/node": "^20.8.2",
"@types/node-fetch": "^2.6.11",
"@types/pg": "^8.10.3",
"@typescript-eslint/eslint-plugin": "^6.11.0",
"@typescript-eslint/parser": "^6.11.0",
"axios": "^1.7.2",
"dotenv": "^16.0.1",
"eslint": "^8.53.0",
"fig-tree-evaluator": "^2.17.1",
"jest": "^29.7.0",
"node-fetch": "2.7.0",
"pg": "^8.11.3",
"prettier": "^3.0.3",
"rimraf": "^5.0.5",
"rollup-plugin-bundle-size": "^1.0.3",
"rollup-plugin-dts": "^6.0.2",
"rollup-plugin-sizes": "^1.0.5",
"rollup-plugin-terser": "^7.0.2",
"sqlite": "^5.1.1",
"sqlite3": "^5.1.7",
"ts-jest": "^29.1.1",
"ts-node": "^10.8.0",
"tslib": "^2.6.2",
"typescript": "^5.2.0"
},
"scripts": {
"setup": "yarn install && cd demo && yarn install",
"test": "jest",
"generate": "ts-node ./codegen/buildOperatorAliasReference.ts",
"generateMassiveQuery": "ts-node ./codegen/generateMassiveQuery.ts",
"getVersion": "ts-node ./codegen/getVersion.ts",
"lint": "eslint . --ext .ts",
"build": "rimraf ./build && rollup -c && rimraf ./build/dts",
"compile": "rimraf ./build && tsc",
"prebuild": "yarn generate && yarn getVersion",
"dev": "cp -n src/dev/playground_example.ts src/dev/playground.ts || ts-node src/dev/playground.ts",
"demo": "yarn getVersion && cd demo && yarn start",
"prepublishOnly": "yarn build",
"gui": "cp -R src/* expression-builder/src/fig-tree-evaluator/src"
},
"dependencies": {
"dequal": "^2.0.3",
"object-property-extractor": "^1.0.12"
},
"bugs": {
"url": "https://github.com/CarlosNZ/fig-tree-evaluator/issues"
},
"homepage": "https://github.com/CarlosNZ/fig-tree-evaluator#readme"
}