-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.22 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
{
"name": "cryptopan",
"version": "0.3.1",
"description": "Node.js implementation of the Crypto-PAn IP address pseudonymisation algorithm",
"homepage": "https://github.com/noinkling/node-cryptopan#readme",
"author": "Malcolm McKeown",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/noinkling/node-cryptopan.git"
},
"main": "./dist/cryptopan.js",
"types": "./dist/cryptopan.d.ts",
"engines": {
"node": ">=15"
},
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"pretest": "npm run build",
"test": "jest",
"test:watch": "jest --watchAll",
"clean": "rm -rf ./dist/",
"prepack": "npm run clean",
"prepare": "npm run build",
"postpack": "jest",
"preversion": "npm run clean && npm test"
},
"devDependencies": {
"@leichtgewicht/ip-codec": "^2.0.4",
"@types/jest": "^27.0.3",
"@types/node": "16",
"jest": "^27.4.5",
"typescript": "~4.5.4"
},
"jest": {
"rootDir": "./dist"
},
"keywords": [
"cryptopan",
"crypto-pan",
"IP address",
"pseudonymisation",
"pseudonymization",
"anonymisation",
"anonymization",
"prefix-preserving",
"encryption",
"privacy",
"GDPR"
]
}