-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.31 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
{
"name": "eslint-plugin-big-number-rules",
"version": "2.2.0",
"description": "Enforce finance-safe calculations using BigNumber instead of native JavaScript arithmetic and Math functions.",
"author": "Conan Theobald",
"license": "MIT",
"keywords": [
"big number",
"eslint plugin",
"ieee754",
"binary floating point",
"finance safe",
"currency safe"
],
"homepage": "https://github.com/shuckster/eslint-plugin-big-number-rules",
"repository": {
"type": "git",
"url": "https://github.com/shuckster/eslint-plugin-big-number-rules"
},
"bugs": {
"url": "https://github.com/shuckster/eslint-plugin-big-number-rules/issues",
"email": "[email protected]"
},
"engines": {
"node": ">=10"
},
"main": "lib/index.js",
"files": [
"lib/**/*.js",
"CHANGELOG.md",
"README.md",
"LICENSE"
],
"scripts": {
"perf": "node ./tests/perf.js",
"test": "node ./tests/src/all.js",
"lint": "pnpx eslint lib/*.js tests/*.js",
"test:watch": "nodemon ./tests/src/all.js",
"build:all": "echo 'No build process'"
},
"dependencies": {
"match-iz": "^3.10.0",
"sift-r": "^1.4.0"
},
"devDependencies": {
"dedent": "^0.7.0",
"eslint": "^8.38.0",
"glob": "^8.1.0",
"load-perf": "^0.2.0",
"nodemon": "^2.0.22"
}
}