forked from stemail23/codenamize-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.13 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": "codenamize-ts",
"version": "1.0.2",
"description": "Generate consistent easier-to-remember codenames from strings, numbers, or other seed inputs.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"ci": "npm run lint && npm run typecheck && npm run test",
"build": "tsup src/index.ts --format esm,cjs --dts",
"lint": "biome check --write src/*",
"typecheck": "tsc --noEmit",
"test": "jest --coverage"
},
"exports": {
"import": "./lib/index.js",
"require": "./lib/index.js"
},
"keywords": [
"alias",
"aliases",
"anonymise",
"anonymize",
"code",
"codename",
"codenamise",
"codenamize",
"generator",
"secret"
],
"homepage": "https://github.com/Strehk/codenamize-ts",
"repository": {
"type": "git",
"url": "https://github.com/Strehk/codenamize-ts"
},
"license": "MIT",
"private": false,
"dependencies": {
"big-integer": "^1.6.36",
"jssha": "^3.3.1"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/jest": "^29.5.13",
"@types/node": "^22.7.8",
"jest": "^29.7.0",
"ts-jest": "^29.1.4",
"ts-node": "^10.9.2",
"tsup": "^8.3.0",
"typescript": "^5.4.5"
}
}