-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.76 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
{
"name": "external-promise",
"version": "1.1.0",
"description": "A promise that can be resolved or rejected externally",
"author": "Maciej Krawczyk",
"homepage": "https://github.com/mckravchyk/external-promise",
"repository": {
"type": "git",
"url": "git://github.com/mckravchyk/external-promise"
},
"license": "MIT",
"main": "./dist/external-promise.common.js",
"module": "./dist/external-promise.mjs",
"exports": {
".": {
"import": {
"types": "./dist/types/index.d.mts",
"default": "./dist/external-promise.mjs"
},
"require": {
"types": "./dist/types/index.d.ts",
"default": "./dist/external-promise.common.js"
}
}
},
"types": "./dist/types/index.d.ts",
"scripts": {
"lint": "eslint src test",
"check-types": "tsc --noemit",
"test": "npx jest --verbose",
"check": "npm run lint; npm run check-types && npm run test",
"build": "npx rollup -c",
"prepublish": "npm run check && npm run build"
},
"files": [
"dist/",
"package.json",
"LICENSE",
"README.md"
],
"keywords": [
"promise",
"async"
],
"devDependencies": {
"@babel/core": "^7.18.9",
"@babel/preset-env": "^7.18.9",
"@babel/preset-typescript": "^7.18.6",
"@types/jest": "^29.5.3",
"@typescript-eslint/eslint-plugin": "^6.1.0",
"@typescript-eslint/parser": "^6.1.0",
"babel-jest": "^29.6.1",
"eslint": "^8.45.0",
"eslint-config-mckravchyk": "^1.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.2.3",
"jest": "^29.6.1",
"jest-environment-jsdom": "^29.7.0",
"rollup": "^4.6.0",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-typescript2": "^0.36.0",
"tslib": "^2.4.0",
"typescript": "^5.3"
}
}