-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
67 lines (67 loc) · 1.88 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
{
"name": "@mojaloop/ml-number",
"version": "11.2.5",
"description": "Mojaloop Number Library implementation that handles decimal processing of amounts/numbers",
"author": "ModusBox",
"contributors": [
"ModusBox",
"Georgi Georgiev <[email protected]>",
"Rajiv Mothilal <[email protected]>",
"Valentin Genev <[email protected]>",
"Miguel de Barros <[email protected]>"
],
"license": "Apache-2.0",
"keywords": [
"decimal",
"bigdecimal",
"wrapper",
"mojaloop"
],
"main": "src/index.js",
"pre-commit": [
"dep:check",
"standard",
"test"
],
"scripts": {
"test": "npm run test:unit | faucet",
"standard": "npx standard",
"standard:fix": "npx standard --fix",
"lint": "npm run standard",
"lint:fix": "npm run standard:fix",
"test:unit": "tapes 'test/unit/**/**.test.js'",
"test:xunit": "npm run test:unit | tap-xunit",
"test:coverage": "nyc --reporter=lcov --reporter=text-summary tapes -- 'test/unit/**/**.test.js'",
"test:coverage-check": "npm run test:coverage && nyc check-coverage",
"audit:fix": "npm audit fix",
"audit:check": "npx audit-ci --config ./audit-ci.jsonc",
"dep:check": "npx ncu -e 2",
"dep:update": "npx ncu -u",
"release": "standard-version --releaseCommitMessageFormat 'chore(release): {{currentTag}} [skip ci]'"
},
"standard": {
"ignore": []
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"dependencies": {
"bignumber.js": "9.1.2"
},
"devDependencies": {
"audit-ci": "^7.1.0",
"eslint": "9.17.0",
"faucet": "0.0.4",
"npm-check-updates": "17.1.13",
"nyc": "17.1.0",
"pre-commit": "1.2.2",
"standard": "17.1.2",
"standard-version": "^9.5.0",
"tap-xunit": "2.4.1",
"tape": "5.9.0",
"tapes": "4.1.0"
},
"overrides": {
"cross-spawn": "7.0.6"
}
}