forked from davidbau/seedrandom
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
45 lines (45 loc) · 1.05 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
{
"name": "esm-seedrandom",
"version": "3.0.5-esm.2",
"description": "Explicitly seeded random number generator for JavaScript, ported to ES Modules. Compatible with original seedrandom CommonJS package.",
"keywords": [
"seed",
"random",
"crypto"
],
"repository": {
"type": "git",
"url": "git://github.com/shanewholloway/js-esm-seedrandom.git"
},
"author": [
"David Bau",
"Shane Holloway"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/shanewholloway/js-esm-seedrandom/issues"
},
"type": "module",
"module": "./esm/index.js",
"main": "./esm/index.js",
"browser": "./esm/index.js",
"files": [
"lib/",
"esm/"
],
"workspaces": [
"./unittest"
],
"devDependencies": {
"@rollup/plugin-terser": "^0.4.4",
"qsrv": "^0.2.8",
"rollup": "^2.79.2"
},
"scripts": {
"clean": "rm -rf ./cjs/* ./esm/* ./umd/*",
"build": "rollup --config",
"watch": "npm -s run build -- --watch",
"pretest": "npm -s run build",
"test": "cd unittest && npm -s run test"
}
}