-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
executable file
·80 lines (80 loc) · 1.99 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
{
"name": "hyoka",
"packageManager": "pnpm@7.3.0",
"description": "A simple math expression parser and evaluator",
"version": "1.2.0",
"main": "./dist/cjs/hyoka.js",
"module": "./dist/esm/hyoka.mjs",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"require": "./dist/cjs/hyoka.js",
"import": "./dist/esm/hyoka.mjs",
"types": "./dist/types/index.d.ts"
}
},
"directories": {
"test": "test"
},
"scripts": {
"dev": "tsx watch src/parseExpression.ts",
"lint": "eslint src/**/*.ts test/**/*.ts",
"lint:fix": "eslint src/**/*.ts test/**/*.ts --fix",
"prepare": "husky install",
"test": "vitest run",
"typecheck": "tsc --noEmit",
"test:dev": "vitest",
"build": "tsc && rollup -c"
},
"files": [
"dist"
],
"lint-staged": {
"*.(ts|js)": "eslint --fix"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"keywords": [
"math",
"expression",
"parser",
"evaluator"
],
"repository": {
"type": "git",
"url": "https://github.com/olamide203/hyoka"
},
"author": "Olamide Atitebi",
"license": "MIT",
"bugs": {
"url": "https://github.com/olamide203/hyoka/issues"
},
"homepage": "https://github.com/olamide203/hyoka#readme",
"devDependencies": {
"@rollup/plugin-node-resolve": "^13.3.0",
"@typescript-eslint/eslint-plugin": "latest",
"@typescript-eslint/parser": "latest",
"cz-conventional-changelog": "3.3.0",
"eslint": "^8.18.0",
"eslint-config-airbnb-base": "latest",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-import": "^2.26.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"rollup": "^2.75.7",
"rollup-plugin-dts": "^4.2.2",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.32.1",
"tslib": "^2.4.0",
"tsx": "^3.6.0",
"typescript": "^4.7.4",
"vite": "^2.9.13",
"vitest": "^0.16.0"
},
"dependencies": {
"decimal.js": "^10.3.1"
}
}