-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.11 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
{
"name": "node-fe1-fpe",
"version": "1.0.0-beta.2",
"description": "Node.js implementation of the FE1 Format Preserving Encryption algorithm.",
"main": "index.js",
"private": false,
"engines": {
"node": ">=10.8.0"
},
"directories": {
"lib": "./lib"
},
"scripts": {
"test": "nyc mocha ./test",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eCollect/node-fe1-fpe.git"
},
"bugs": {
"url": "https://github.com/nanov/node-fe1-fpe/issues"
},
"keywords": [
"node",
"js",
"fe1",
"fpe",
"encryption",
"javascript",
"format",
"preserving"
],
"author": "Dimitar Nanov",
"license": "MIT",
"devDependencies": {
"chai": "^4.2.0",
"coveralls": "^3.0.7",
"eslint": "^6.6.0",
"eslint-config-ecollect-base": "0.1.1",
"mocha": "^6.2.2",
"nyc": "^14.1.1"
},
"homepage": "https://github.com/eCollect/node-fe1-fpe",
"contributors": [
"Dimitar Nanov <[email protected]> (https://nanov.io)"
],
"dependencies": {
"bigint-buffer": "^1.1.5"
}
}