-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
executable file
·42 lines (42 loc) · 1.06 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
{
"name": "calc-js",
"version": "3.0.0",
"description": "Handle JavaScript operations, avoiding the native problems of the language",
"main": "index.js",
"scripts": {
"test": "jest .",
"lint": "eslint .",
"build": "rm -rf dist && tsc --project tsconfig.json && cp package.json README.md LICENSE dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lordazzi/calc-js.git"
},
"keywords": [
"bigdecimal",
"js",
"javascript",
"typescript",
"nan",
"calculator",
"ieee 754",
"ieee problem",
"floating-point arithmetic",
"floating-point accuracy problems"
],
"author": "Ricardo Azzi Silva",
"license": "MIT",
"bugs": {
"url": "https://github.com/lordazzi/calc-js/issues"
},
"homepage": "https://github.com/lordazzi/calc-js#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@types/jest": "^29.5.11",
"eslint": "^8.57.0",
"eslint-plugin-ban": "^1.6.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3"
}
}