-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.17 KB
/
Copy pathpackage.json
File metadata and controls
93 lines (93 loc) · 2.17 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "exprify",
"version": "1.0.9",
"description": "A powerful math expression parser and evaluator with runtime data-type checking",
"type": "module",
"main": "dist/exprify.cjs.cjs",
"module": "dist/exprify.esm.js",
"exports": {
".": {
"import": "./dist/exprify.esm.js",
"require": "./dist/exprify.cjs.cjs"
}
},
"browser": "dist/exprify.js",
"unpkg": "dist/exprify.min.js",
"publishConfig": {
"access": "public"
},
"bin": {
"exprify": "./bin/cli.mjs"
},
"engines": {
"node": ">=18.0.0"
},
"overrides": {
"test-exclude": "^7.0.1",
"glob": "^13.0.6"
},
"scripts": {
"start": "node src/index.js",
"dev": "node --watch src/index.js",
"clean": "node tools/clean.js",
"build": "npm run clean && rollup -c",
"test": "node tools/test.js",
"test:coverage": "node tools/test.js --coverage",
"size": "size-limit",
"lint": "eslint src/ test/",
"lint:fix": "eslint --fix src/ test/",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "tsc --noEmit",
"prepare": "husky"
},
"jest": {
"testMatch": [
"**/test/**/*.js"
]
},
"size-limit": [
{
"path": "dist/exprify.min.js",
"limit": "30 KB"
},
{
"path": "dist/exprify.esm.js",
"limit": "60 KB"
}
],
"keywords": [
"math",
"parser",
"expression",
"evaluator",
"calculator",
"javascript"
],
"author": "Nirmal Paul",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "git+https://github.com/code-hemu/exprify.git"
},
"bugs": {
"url": "https://github.com/code-hemu/exprify/issues"
},
"homepage": "https://github.com/code-hemu/exprify#readme",
"devDependencies": {
"@eslint/js": "^10.0.1",
"@rollup/plugin-commonjs": "^29.0.3",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-terser": "^1.0.0",
"@size-limit/file": "^12.1.0",
"eslint": "^10.4.1",
"globals": "^17.6.0",
"husky": "^9.1.7",
"jest": "^30.4.2",
"lint-staged": "^17.0.7",
"prettier": "^3.8.4",
"rollup": "^4.0.0",
"size-limit": "^12.1.0",
"typescript": "^6.0.3"
}
}