-
-
Notifications
You must be signed in to change notification settings - Fork 67
/
package.json
54 lines (54 loc) · 984 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
53
54
{
"name": "pify",
"version": "6.1.0",
"description": "Promisify a callback-style function",
"license": "MIT",
"repository": "sindresorhus/pify",
"funding": "https://github.com/sponsors/sindresorhus",
"author": {
"name": "Sindre Sorhus",
"email": "[email protected]",
"url": "https://sindresorhus.com"
},
"type": "module",
"exports": "./index.js",
"types": "./index.d.ts",
"engines": {
"node": ">=14.16"
},
"scripts": {
"test": "xo && ava && tsd",
"optimization-test": "node --allow-natives-syntax optimization-test.js"
},
"files": [
"index.js",
"index.d.ts"
],
"keywords": [
"promisify",
"callback",
"promise",
"promises",
"denodify",
"denodeify",
"node",
"then",
"thenify",
"convert",
"transform",
"wrap",
"wrapper",
"bind",
"async",
"await",
"es2015",
"bluebird"
],
"devDependencies": {
"ava": "^4.3.3",
"pinkie-promise": "^2.0.1",
"tsd": "^0.23.0",
"v8-natives": "^1.2.5",
"xo": "^0.52.3"
}
}