-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 877 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
{
"name": "@laqudee/custom-promise",
"version": "0.0.4",
"description": "Building Promises from scratch by JavaScript",
"main": "dist/index.js",
"module": "dist/index.mjs",
"exports": {
"require": "./dist/index.js",
"import": "./dist/index.mjs"
},
"scripts": {
"dev": "node -r esm ./src/index.js",
"build": "rollup -c",
"format": "prettier --write .",
"test:es": "node ./examples/test.mjs",
"test:cjs": "node ./examples/test.js",
"test:staticMethod": "node ./examples/staticMethodTest.mjs"
},
"publishConfig": {
"access": "public"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.2.3",
"esm": "^3.2.25",
"prettier": "^3.0.3",
"rollup": "^4.9.1"
},
"dependencies": {
"aggregate-error": "^5.0.0",
"node-fetch": "^3.3.2"
}
}