-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
88 lines (88 loc) · 2.1 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "subscript",
"version": "9.0.1",
"description": "Fast and tiny expression evaluator with minimal syntax.",
"main": "subscript.js",
"module": "subscript.js",
"browser": "subscript.js",
"types": "./subscript.d.ts",
"exports": {
".": "./subscript.js",
"./parse": "./src/parse.js",
"./compile": "./src/compile.js",
"./const": "./src/const.js",
"./justin": "./justin.js",
"./src/*": "./src/*",
"./feature/*": "./feature/*"
},
"type": "module",
"files": [
"src",
"feature",
"subscript.js",
"subscript.min.js",
"subscript.d.ts",
"justin.js",
"justin.min.js"
],
"directories": {
"lib": "lib",
"src": "src",
"test": "test"
},
"scripts": {
"build": "npm run build-subscript && npm run build-justin",
"min": "npm run min-subscript && npm run min-justin",
"build-subscript": "rollup subscript.js --file subscript.min.js --format esm --name \"Subscript\"",
"min-subscript": "terser subscript.min.js -o subscript.min.js --module -c passes=3 -m",
"build-justin": "rollup justin.js --file justin.min.js --format esm --name \"Justin\"",
"min-justin": "terser justin.min.js -o justin.min.js --module -c passes=3 -m",
"test": "node test/test.js",
"check-types": "tsc --noEmit subscript.d.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dy/subscript.git"
},
"keywords": [
"jexl",
"jsep",
"expression",
"evaluator",
"parser",
"evaluation",
"math",
"arithmetic",
"justin",
"eval",
"math-eval",
"math-evaluator",
"math-expression-evaluator",
"calculation",
"jessie",
"jessica",
"eval",
"dsl",
"json",
"calculator",
"calc",
"math.js",
"mathjs",
"math-codegen",
"math-parser",
"formula",
"operator",
"overload"
],
"author": "Dmitry Iv.",
"license": "ISC",
"bugs": {
"url": "https://github.com/dy/subscript/issues"
},
"homepage": "https://github.com/dy/subscript#readme",
"devDependencies": {
"rollup": "^2.60.2",
"terser": "^5.10.0",
"tst": "^7.1.1"
}
}