-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 894 Bytes
/
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
{
"name": "ccc-util",
"version": "1.2.0",
"description": "Util to validate CCC code. It also can be used to generate a valid CCC for testing purposes",
"exports": "./index.js",
"type": "module",
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
},
"scripts": {
"test": "nyc --reporter=lcov --reporter=text-summary mocha",
"lint": "eslint ."
},
"keywords": [
"ccc",
"util",
"bank",
"account"
],
"author": "JuanMa Ruiz",
"license": "MIT",
"devDependencies": {
"chai": "^4.3.4",
"coveralls": "^3.1.0",
"eslint": "^7.8.1",
"mocha": "^8.4.0",
"nyc": "^15.1.0",
"sinon": "^10.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/JuanMaRuiz/ccc-util.git"
},
"homepage": "https://github.com/JuanMaRuiz/ccc-util",
"dependencies": {
"@fnzc/nz-bank-account-validator": "^1.0.3"
}
}