-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
68 lines (68 loc) · 1.4 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
{
"name": "jexpr",
"version": "1.0.0-pre.9",
"description": "A simple expression parser and evaluator",
"repository": {
"type": "git",
"url": "https://github.com/justinfagnani/jexpr.git"
},
"type": "module",
"main": "index.js",
"exports": {
".": "./index.js",
"./lib/*": "./lib/*.js"
},
"files": [
"index.*",
"lib/*",
"src/*.ts",
"src/lib/*"
],
"scripts": {
"build": "wireit",
"test": "wireit",
"prepublish": "npm test",
"benchmark": "wireit",
"format": "prettier \"**/*.{json,md,ts}\" --write"
},
"author": "Justin Fagnani",
"license": "BSD 3-Clause",
"devDependencies": {
"@types/benchmark": "^2.1.5",
"@types/node": "^20.11.30",
"benchmark": "^2.1.4",
"prettier": "^3.2.5",
"typescript": "^5.4.2",
"wireit": "^0.14.4"
},
"wireit": {
"build": {
"command": "tsc --pretty",
"files": [
"src/**/*.ts",
"tsconfig.json"
],
"output": [
"index.{js,js.map,d.ts,d.ts.map}",
"lib"
],
"clean": "if-file-deleted"
},
"test": {
"command": "node --test-reporter spec --test test/*_test.js",
"dependencies": [
"build"
],
"files": [],
"output": []
},
"benchmark": {
"command": "node benchmark/eval_benchmark",
"dependencies": [
"build"
],
"files": [],
"output": []
}
}
}