-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 873 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 873 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
35
36
37
38
{
"name": "randm",
"version": "0.0.0",
"main": "randm.js",
"description": "Easy to use JS random generator for generating random numbers, dice rolls, dates etc... Small footprint (<1Kb gzipped) library with Typescript support that can be used in a browser or node environment.",
"author": "Chris Probably",
"license": "MIT",
"repository": "git://github.com/chrisprobably/randm.git",
"keywords": [
"random",
"rng",
"dice"
],
"scripts": {
"test": "tap test/*.js"
},
"files": [
"LICENSE",
"README.md",
"randm.js",
"randm.d.ts"
],
"types": "randm.d.ts",
"engines": {
"node": ">=18.0.0"
},
"size-limit": [
{
"path": "./randm.js"
}
],
"devDependencies": {
"@size-limit/preset-small-lib": "^11.2.0",
"prettier": "^3.5.3",
"semantic-release": "^24.2.5",
"tap": "^21.1.0"
}
}