-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.7 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.7 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
{
"name": "@bitcode-framework/expr-js",
"version": "1.17.8",
"description": "A TypeScript port of expr-lang/expr v1.17.8 — expression language engine.",
"type": "module",
"main": "./dist/cjs/index.cjs",
"module": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.cjs"
}
},
"files": [
"dist",
"src",
"README.md",
"PARITY.md",
"LICENSE"
],
"scripts": {
"build": "npm run build:esm && npm run build:cjs && npm run build:types",
"build:esm": "tsc -p tsconfig.esm.json",
"build:cjs": "tsc -p tsconfig.cjs.json && node scripts/rename-cjs.mjs",
"build:types": "tsc -p tsconfig.types.json",
"typecheck": "tsc -p tsconfig.json --noEmit",
"test": "node --test --import tsx tests/unit/*.test.ts",
"test:parity": "node --test --import tsx tests/go-parity/**/*.test.ts",
"parity:gen": "cd parity && go run ./gen",
"sync:go": "node scripts/sync-go.mjs",
"parity:verify": "node scripts/verify-parity.mjs"
},
"keywords": [
"expr",
"expression",
"expression-language",
"expr-lang",
"evaluator",
"interpreter"
],
"license": "MIT",
"author": "BitCode Framework (port). Original: Anton Medvedev <anton@medv.io>",
"repository": {
"type": "git",
"url": "https://github.com/bitcode-framework/expr-js.git"
},
"homepage": "https://github.com/bitcode-framework/expr-js#readme",
"bugs": {
"url": "https://github.com/bitcode-framework/expr-js/issues"
},
"engines": {
"node": ">=18"
},
"devDependencies": {
"tsx": "^4.19.2",
"typescript": "^5.7.2"
}
}