-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1 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
{
"name": "@cttricks/pseudocrypt",
"version": "1.0.0",
"description": "Generate short, reversible, pseudo-unique hashes for numeric values. Inspired by KevBurnsJr's original PHP implementation.",
"main": "index.js",
"type": "commonjs",
"exports": {
".": "./index.js"
},
"scripts": {
"build": "rollup -c",
"test": "node .test/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/cttricks/pseudocrypt.git"
},
"keywords": [
"hash",
"pseudo",
"pseudocrypt",
"short-id",
"obfuscation",
"encode",
"decode",
"base62",
"reversible-hash",
"friendly-ids"
],
"author": {
"name": "Tanish Raj",
"url": "https://github.com/cttricks"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/cttricks/pseudocrypt/issues"
},
"homepage": "https://github.com/cttricks/pseudocrypt#readme",
"engines": {
"node": ">=12"
},
"devDependencies": {
"rollup": "^2.79.2",
"rollup-plugin-terser": "^7.0.2"
}
}