-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.43 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.43 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "@wfp/common-identifier-algorithm-shared",
"version": "2.1.5",
"description": "Generate psuedonymous identifiers from tabular data",
"author": "World Food Programme",
"license": "AGPL-3.0-or-later",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md",
"docs"
],
"type": "module",
"scripts": {
"build": "tsc -p tsconfig.build.json",
"watch": "tsc -w -p tsconfig.build.json",
"prepare": "npm run build",
"clean": "git clean -xdf dist coverage reports",
"clean:all": "git clean -xdf dist coverage reports node_modules",
"publish:dry": "npm publish --dry-run",
"test": "vitest",
"test:coverage": "vitest run --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wfp/common-identifier-algorithm-shared.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"bugs": {
"url": "https://github.com/wfp/common-identifier-algorithm-shared/issues"
},
"homepage": "https://github.com/wfp/common-identifier-algorithm-shared#readme",
"devDependencies": {
"@types/debug": "^4.1.12",
"@types/jest": "^29.5.14",
"@vitest/coverage-v8": "^4.0.16",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"prettier": "^3.4.1",
"ts-jest": "^29.2.5",
"typescript": "^5.7.2",
"vite-tsconfig-paths": "^6.0.3",
"vitest": "^4.0.16"
},
"dependencies": {
"@date-fns/utc": "^2.1.0",
"csv": "^6.3.9",
"date-fns": "^4.1.0",
"debug": "^4.3.7",
"hi-base32": "^0.5.1",
"is-executable": "^2.0.1",
"openpgp": "^6.2.2",
"safe-stable-stringify": "^2.4.3",
"toml": "^3.0.0",
"xlsx": "https://cdn.sheetjs.com/xlsx-0.20.3/xlsx-0.20.3.tgz"
},
"keywords": [
"common-identifier"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./config": {
"types": "./dist/config/index.d.ts",
"default": "./dist/config/index.js"
},
"./crypto": {
"types": "./dist/crypto/index.d.ts",
"default": "./dist/crypto/index.js"
},
"./validation": {
"types": "./dist/validation/index.d.ts",
"default": "./dist/validation/index.js"
},
"./processing": {
"types": "./dist/processing/index.d.ts",
"default": "./dist/processing/index.js"
},
"./hashing": {
"types": "./dist/hashing/index.d.ts",
"default": "./dist/hashing/index.js"
}
}
}