-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
56 lines (56 loc) · 1.92 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
{
"name": "feistel-cipher",
"version": "1.5.13",
"description": "Feistel cipher implementation for format-preserving encryption",
"main": "dist/lib/src/typescript/index.js",
"types": "dist/lib/src/typescript/index.d.ts",
"scripts": {
"compile": "eslint lib/**/*.ts && tsc",
"fix": "eslint lib/**/*.ts --fix",
"test": "tsc && mocha 'test/src/typescript/node.spec.ts' --require ts-node/register && browserify ./dist/test/src/typescript/browser.spec.js -o dist/test/src/typescript/index.js && live-server --port=10001 --mount=/:test/src/typescript",
"fix-test": "eslint test/**/*.ts --fix",
"test-browser": "tsc && browserify ./dist/test/src/typescript/browser.spec.js -o dist/test/src/typescript/index.js && live-server --port=10001 --mount=/:test/src/typescript",
"test-node": "tsc && mocha 'test/src/typescript/node.spec.ts' --require ts-node/register"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cyrildever/feistel-cipher.git"
},
"keywords": [
"feistel",
"cipher",
"format-preserving",
"encryption",
"fpe"
],
"author": "Cyril Dever <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/cyrildever/feistel-cipher/issues"
},
"homepage": "https://github.com/cyrildever/feistel-cipher#readme",
"dependencies": {
"blakejs": "^1.2.1",
"buffer": "^6.0.3",
"keccak": "^3.0.4",
"sha3": "^2.1.4"
},
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.10.0",
"@types/chai": "^4.3.19",
"@types/keccak": "^3.0.4",
"@types/mocha": "^10.0.7",
"@types/node": "^22.5.4",
"@typescript-eslint/eslint-plugin": "^8.4.0",
"@typescript-eslint/parser": "^8.4.0",
"browserify": "17.0.0",
"chai": "^4.5.0",
"eslint": "^9.10.0",
"eslint-plugin-no-loops": "~0.4.0",
"globals": "^15.9.0",
"mocha": "^10.7.3",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
}
}