-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
74 lines (74 loc) · 1.8 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "n-digit-token",
"version": "2.2.2",
"description": "Cryptographically secure pseudo-random token of n digits",
"keywords": [
"token",
"cryptographically-strong",
"cryptographically-secure",
"token-generator",
"2fa",
"auth-token",
"crypto",
"cryptography",
"random",
"CSPRNG",
"secure-random",
"RNG",
"PRNG"
],
"homepage": "https://n-digit-token.almasi.dev",
"repository": {
"type": "git",
"url": "https://github.com/almasen/n-digit-token"
},
"funding": "https://github.com/sponsors/almasen",
"author": {
"name": "Daniel Almasi",
"email": "[email protected]",
"url": "https://github.com/almasen"
},
"license": "MIT",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*"
],
"scripts": {
"build": "tsc",
"test": "jest",
"lint": "tslint -p tsconfig.json --fix",
"format": "prettier --write \"src/**/*.ts\""
},
"dependencies": {},
"devDependencies": {
"@types/jest": "^29.5.4",
"@types/node": "^14.14.31",
"crypto-browserify": "^3.12.0",
"jest": "^29.7.0",
"prettier": "^1.13.2",
"ts-jest": "^29.1.1",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.13.0",
"typescript": "^4.9.5"
},
"jest": {
"transform": {
"^.+\\.(t|j)sx?$": "ts-jest"
},
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"collectCoverage": true,
"coverageReporters": [
"json",
"html",
"json-summary"
]
}
}