-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.33 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
{
"name": "algebra.ts",
"version": "0.3.1",
"description": "Build, display, and solve algebraic equations.",
"main": "algebra.ts",
"type": "module",
"scripts": {
"build": "rollup --config rollup.config.js",
"test": "jest --reporters=default",
"test:ci": "jest --ci",
"coveralls": "npm test && cat ./coverage/lcov.info | npx coveralls && rm -rf ./coverage",
"lint": "eslint --no-warn-ignored .",
"version": "conventional-changelog --preset conventionalcommits --infile CHANGELOG.md --same-file --append && prettier --write CHANGELOG.md && git add CHANGELOG.md",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "https://github.com/remigius42/algebra.ts.git"
},
"files": [
"index.ts",
"src/",
"dist/"
],
"devDependencies": {
"@babel/core": "^7.24.0",
"@babel/eslint-parser": "^7.23.10",
"@babel/plugin-syntax-import-assertions": "^7.23.3",
"@babel/plugin-transform-modules-umd": "^7.23.3",
"@babel/preset-env": "^7.24.0",
"@babel/preset-typescript": "^7.23.3",
"@commitlint/cli": "^19.0.2",
"@commitlint/config-conventional": "^19.0.0",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@types/jest": "^29.5.12",
"c8": "^9.1.0",
"conventional-changelog-cli": "^4.1.0",
"core-js": "^3.36.0",
"coveralls": "^2.11.2",
"cspell-cli": "^8.4.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^27.9.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"lint-staged": "^15.2.2",
"markdownlint": "^0.33.0",
"markdownlint-cli2": "^0.12.1",
"prettier": "3.2.5",
"rollup": "^4.12.0",
"ts-jest": "^29.1.2",
"tslib": "^2.6.2",
"typescript": "^5.4.2",
"typescript-eslint": "^7.1.1"
},
"keywords": [
"algebra",
"math",
"fractions",
"equations",
"inequations",
"expressions",
"latex",
"solver",
"typescript"
],
"author": "Andreas Remigius Schmidt",
"contributors": [
"Nicole White"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/remigius42/algebra.ts/issues"
},
"homepage": "https://remigius42.github.io/algebra.ts/"
}