forked from sindresorhus/onetime
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 1.21 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
{
"name": "@esm2cjs/onetime",
"version": "6.0.1-cjs.0",
"description": "Ensure a function is only called once. This is a fork of sindresorhus/onetime, but with CommonJS support.",
"license": "MIT",
"repository": "esm2cjs/onetime",
"funding": "https://github.com/sponsors/AlCalzone",
"author": {
"name": "Dominic Griesel",
"email": "d.griesel@gmx.net"
},
"exports": {
".": {
"import": "./esm/index.js",
"require": "./cjs/index.js"
},
"./package.json": "./package.json"
},
"engines": {
"node": ">=12"
},
"scripts": {
"test": "xo && ava && tsd"
},
"files": [
"cjs/",
"esm/"
],
"keywords": [
"once",
"function",
"one",
"onetime",
"func",
"fn",
"single",
"call",
"called",
"prevent"
],
"dependencies": {
"@esm2cjs/mimic-fn": "^4.0.0"
},
"devDependencies": {
"ava": "^3.15.0",
"tsd": "^0.14.0",
"xo": "^0.38.2"
},
"publishConfig": {
"access": "public"
},
"main": "cjs/index.js",
"module": "esm/index.js",
"types": "esm/index.d.ts",
"typesVersions": {
"*": {
"esm/index.d.ts": [
"esm/index.d.ts"
],
"cjs/index.d.ts": [
"esm/index.d.ts"
],
"*": [
"esm/*"
]
}
},
"xo": {
"ignores": [
"cjs",
"**/*.test-d.ts"
]
}
}