-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.81 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.81 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
{
"name": "the-math",
"version": "1.5.5",
"description": "TheMath is an extensive math library for JavaScript and Node.js. It features a flexible expression parser",
"main": "./dist/index.js",
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc",
"test": "jest",
"test:watch": "jest --watchAll",
"test:coverage": "jest --coverage",
"lint": "eslint --ext .ts ./"
},
"repository": {
"type": "git",
"url": "https://github.com/TheMarkWill/TheMath/tree/main"
},
"author": "Marcon Willian <oi@marcon.run>",
"license": "MIT",
"bugs": {
"url": "https://github.com/themarkwill/TheMath/issues"
},
"homepage": "https://github.com/themarkwill/TheMath#readme",
"keywords": [
"math",
"mathematics",
"functions",
"numeric",
"algebra",
"parser",
"expression",
"number",
"bignumber",
"complex",
"fraction",
"matrix",
"unit"
],
"devDependencies": {
"@types/jest": "^27.4.1",
"@types/node": "^17.0.21",
"@typescript-eslint/eslint-plugin": "^5.15.0",
"@typescript-eslint/parser": "^5.15.0",
"eslint": "^8.11.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^2.2.1",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.5.1",
"jest-junit": "^15.0.0",
"prettier": "^2.1.1",
"ts-jest": "^27.1.3",
"ts-node": "^10.7.0",
"ts-node-dev": "^1.0.0-pre.49",
"typescript": "^4.6.2"
},
"jest-junit": {
"outputDirectory": "reports",
"outputName": "jest-junit.xml",
"ancestorSeparator": " › ",
"uniqueOutputName": "false",
"suiteNameTemplate": "{filepath}",
"classNameTemplate": "{classname}",
"titleTemplate": "{title}"
}
}