-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 947 Bytes
/
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
{
"name": "crypto-secure-random-digit",
"version": "1.0.10",
"description": "A Cryptographically Secure Pseudo-Random Number Generator for NodeJS",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"test": "mocha --require ts-node/register --timeout 8000 ./*.spec.ts",
"build": "tsc"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ottokruse/crypto-secure-random-digit"
},
"files": [
"dist/index.js",
"dist/index.d.ts"
],
"keywords": [
"random",
"CSPRNG",
"crypto",
"secure"
],
"author": "[email protected]",
"license": "MIT",
"homepage": "https://github.com/ottokruse/crypto-secure-random-digit",
"dependencies": {},
"devDependencies": {
"@types/mocha": "^5.2.5",
"@types/node": "^10.12.10",
"mocha": "^10.2.0",
"ts-node": "^7.0.1",
"typescript": "^3.1.6"
}
}