-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 1.79 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
75
76
77
{
"name": "seeded",
"version": "0.6.2",
"description": "Seedable pseudorandom number generator (PRNG).",
"keywords": [
"arc4",
"arcfour",
"continuous probability distribution",
"deterministic random bit generator",
"discrete probability distribution",
"drbg",
"interval",
"modern cryptography",
"persistent data structure",
"prng",
"pseudorandom number generator",
"pseudorandom number sampling",
"rc4",
"seed",
"seedable",
"seeded",
"stream cipher",
"uniform distribution",
"weighted distribution"
],
"homepage": "https://github.com/Stassi/seeded#readme",
"license": "MIT",
"author": "Andreas Stassivik <andreas@stassi.net> (https://github.com/Stassi)",
"files": [
"lib/**/*"
],
"type": "module",
"types": "./lib/seeded.d.ts",
"exports": "./lib/seeded.mjs",
"repository": "github:Stassi/seeded",
"scripts": {
"build": "rollup -c",
"coverage": "jest --coverage",
"format:check": "prettier --check .",
"format:write": "prettier --write .",
"prepublishOnly": "npm run build",
"test": "jest && package-check && npm run format:check"
},
"devDependencies": {
"@rollup/plugin-json": "^4.1.0",
"@skypack/package-check": "^0.2.2",
"@types/jest": "^26.0.24",
"jest": "^27.0.5",
"prettier": "2.3.2",
"rollup": "^2.55.1",
"rollup-plugin-ts": "^1.4.0",
"ts-jest": "^27.0.4",
"typescript": "^4.3.4"
},
"engines": {
"node": "^12.22.4 || ^14.17.4 || >=16.6.0",
"npm": "^6.14.13 || >=7.20.0"
},
"os": [
"darwin",
"linux",
"win32"
],
"cpu": [
"x64"
],
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
},
"prettier": {
"endOfLine": "auto",
"semi": false,
"singleQuote": true
},
"sideEffects": false
}