-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
50 lines (50 loc) · 1.09 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
{
"name": "hsm-pin-block",
"version": "1.0.3",
"description": "Generate ISO-9564 PCI Encryped PIN Block International Standard using NodeJS",
"main": "lib/pin_block.js",
"scripts": {
"test": "mocha ./test --recursive",
"test:coverage": "nyc mocha ./test --recursive",
"lint": "eslint lib test",
"lint:fix": "eslint lib test --fix"
},
"engines": {
"node": ">=8.11.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/incubus8/hsm-pin-block.git"
},
"bugs": {
"url": "https://github.com/rhzs/hsm-pin-block/issues"
},
"keywords": [
"pin",
"pin block",
"iso-9564",
"ISO 9564",
"encrypt",
"hsm",
"decrypt"
],
"author": "Rheza Satria",
"license": "MIT",
"dependencies": {
"big-integer": "^1.6.48"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-xo-space": "^0.24.0",
"eslint-plugin-security": "^1.4.0",
"mocha": "^7.1.0",
"nyc": "^15.0.0"
},
"nyc": {
"check-coverage": true,
"lines": 100,
"statements": 100,
"functions": 100,
"branches": 100
}
}