-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 831 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 831 Bytes
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
{
"name": "@alisey/pcg32",
"version": "1.1.0",
"author": "Alexey Lebedev",
"description": "PCG-32 random number generator implemented in WebAssembly",
"homepage": "https://github.com/alisey/pcg32",
"license": "MIT",
"keywords": [
"rng",
"prng",
"random",
"pcg"
],
"type": "module",
"main": "dist/index.js",
"engines": {
"node": ">=16"
},
"files": [
"dist"
],
"scripts": {
"build": "node build.js",
"demo": "node extras/demo.js",
"pretest": "npm run build",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"perf": "node extras/perf.js"
},
"devDependencies": {
"fs-extra": "^10.0.0",
"jest": "^27.4.3",
"wabt": "^1.0.24"
}
}