-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
39 lines (39 loc) · 1 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
{
"name": "isaac-prng",
"version": "1.0.16",
"description": "ISAAC cryptographically-secure psuedorandom number generator (CSPRNG) NPM package written in TypeScript",
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"files": [
"lib/"
],
"scripts": {
"tsc": "tsc -p tsconfig.json && tsc -p tsconfig-cjs.json",
"test": "echo \"Error: no test specified\" && exit 1",
"prepublish": "npm run tsc",
"clean": "rimraf ./lib"
},
"keywords": [
"isaac",
"random",
"prng",
"cryptography",
"secure",
"bigint",
"typescript"
],
"author": {
"name": "Aaron Croissette",
"email": "aaron@kinetech.llc",
"url": "https://kinetech.llc/"
},
"repository": {
"type": "git",
"url": "https://github.com/acrois/isaac-prng.git"
},
"license": "MIT",
"devDependencies": {
"rimraf": "^3.0.2",
"typescript": "^4.3.5"
}
}