-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 850 Bytes
/
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
{
"name": "rand-ms",
"version": "1.1.1",
"description": "Get pseudo-random millisecond values for timeouts/intervals",
"license": "MIT",
"repository": "cmcculloh/rand-ms",
"author": {
"name": "Christopher McCulloh",
"email": "cmcculloh@gmail.com",
"url": "https://cmcculloh.com"
},
"type": "module",
"main": "./index.cjs",
"exports": {
".": {
"import": "./wrapper.mjs",
"require": "./index.cjs"
}
},
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
},
"scripts": {
"test": "xo && ava"
},
"files": [
"index.cjs",
"wrapper.mjs"
],
"keywords": [
"milliseconds",
"random",
"timeout"
],
"dependencies": {},
"devDependencies": {
"ava": "^3.15.0",
"xo": "^0.46.3"
},
"xo": {
"rules": {
"quotes": [
"warn",
"single"
],
"arrow-parens": [
"warn",
"always"
]
}
}
}