-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.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
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
{
"name": "randoscando",
"version": "1.0.1",
"description": "Predictable randomness library, all seed based",
"main": "dist/randoscando.min.js",
"module": "src/index.js",
"type": "module",
"typings": "types/index.d.ts",
"unpkg": "dist/randoscando.iife.min.js",
"jsdelivr": "dist/randoscando.iife.min.js",
"exports": {
".": {
"import": {
"types": "./types/index.d.ts",
"default": "./dist/randoscando.min.js"
},
"require": {
"types": "./types/index.d.cts",
"default": "./dist/randoscando.min.cjs"
},
"default": {
"types": "./types/index.d.cts",
"default": "./dist/randoscando.iife.min.js"
}
}
},
"scripts": {
"test": "tape tests/**/*.spec.js | tap-on",
"create": "node scripts/create-export.js && standard --fix src/index.js",
"lint": "standard --fix src/**/*.js | snazzy",
"docs": "node_modules/.bin/jsdoc -c jsdoc.json",
"build": "rollup -c",
"prepack": "npm-run-all --parallel create lint test --serial build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dhershman1/randoscando.git"
},
"keywords": [
"data",
"random",
"probability",
"randoscando",
"seeded",
"seed",
"randomness",
"rando",
"scando"
],
"author": "Dustin Hershman<[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/dhershman1/randoscando/issues"
},
"homepage": "https://github.com/dhershman1/randoscando#readme",
"dependencies": {
"kyanite": "^2.0.1"
},
"devDependencies": {
"@babel/core": "^7.22.10",
"@babel/preset-env": "^7.22.10",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-node-resolve": "^15.2.0",
"@rollup/plugin-terser": "^0.4.3",
"globby": "^13.2.2",
"jsdoc": "^4.0.2",
"npm-run-all": "^4.1.5",
"pinet": "^1.1.4",
"rollup": "^3.28.0",
"rollup-plugin-filesize": "^10.0.0",
"snazzy": "^9.0.0",
"standard": "^17.1.0",
"tap-on": "^0.3.1",
"tape": "^5.6.6"
},
"standard": {
"ignore": [
"docs/*",
"dist/*",
"types/*"
]
}
}