-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 1.93 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 1.93 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
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
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "implausible",
"version": "3.1.1",
"description": "Generate pseudorandom numbers and sample probability distributions with optional seed and choice of algorithm.",
"keywords": [
"deterministic",
"prng",
"probability",
"pseudorandom",
"random",
"sample",
"seed",
"seedable",
"seeded",
"stochastic",
"uniform",
"weighted"
],
"homepage": "https://github.com/Stassi/implausible#readme",
"license": "MIT",
"author": "Andreas Stassivik <andreas@stassi.net> (https://github.com/Stassi)",
"files": [
"/lib"
],
"main": "./lib/implausible.cjs",
"exports": {
"import": "./lib/implausible.mjs",
"require": "./lib/implausible.cjs"
},
"repository": "github:Stassi/implausible",
"sideEffects": false,
"scripts": {
"build": "rollup -c",
"lint": "standard",
"prepublishOnly": "npm run build",
"test": "npm run lint && mocha"
},
"dependencies": {
"ramda": "^0.27.0",
"seedrandom": "^3.0.5"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.4",
"@babel/preset-env": "^7.8.4",
"@babel/register": "^7.8.3",
"@rollup/plugin-commonjs": "^19.0.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"babel-eslint": "^10.0.3",
"chai": "^4.1.2",
"mocha": "^9.0.1",
"rollup": "^2.52.3",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-node-polyfills": "^0.2.1",
"rollup-plugin-terser": "^7.0.2",
"standard": "^16.0.3"
},
"engines": {
"node": "^12.22.1 || ^14.17.1 || >=16.4.0",
"npm": "^6.14.13 || >=7.19.0"
},
"os": [
"darwin",
"linux",
"win32"
],
"cpu": [
"x64"
],
"babel": {
"presets": [
[
"@babel/preset-env",
{
"corejs": "3",
"useBuiltIns": "entry"
}
]
]
},
"browserslist": [
"defaults",
"node 12",
"node 14",
"node 16"
],
"mocha": {
"require": "@babel/register"
}
}