-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.48 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
{
"name": "p-from-callback",
"version": "2.0.0",
"description": "Map a callback to a promise",
"type": "module",
"types": "index.d.ts",
"exports": {
".": {
"types": "./index.d.ts",
"default": "./index.js"
},
"./package.json": "./package.json"
},
"engines": {
"node": ">=18.0"
},
"scripts": {
"lint": "eslint --cache .",
"types": "tsd",
"test": "mocha",
"cover": "c8 npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dotcore64/p-from-callback.git"
},
"files": [
"index.js",
"index.d.ts"
],
"keywords": [
"promises",
"callbacks"
],
"author": "Julian Grinblat <julian@dotcore.co.il>",
"license": "SEE LICENSE IN LICENSE.md",
"bugs": {
"url": "https://github.com/dotcore64/p-from-callback/issues"
},
"homepage": "https://github.com/dotcore64/p-from-callback#readme",
"devDependencies": {
"@eslint-community/eslint-plugin-eslint-comments": "^4.4.1",
"@typescript-eslint/eslint-plugin": "^8.25.0",
"@typescript-eslint/parser": "^8.25.0",
"c8": "^10.1.3",
"chai": "^5.2.0",
"chai-as-promised": "^8.0.1",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-import-resolver-typescript": "^3.8.3",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-mocha": "^10.5.0",
"eslint-plugin-n": "^17.15.1",
"eslint-plugin-unicorn": "^56.0.1",
"mocha": "^11.1.0",
"tsd": "^0.31.2",
"typescript": "^5.7.3"
}
}