-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.11 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
{
"name": "promises-delivery",
"description": "This package is used to manage multiple promises by giving a key, you can call resolve or reject function out of the promise parameter callback and manage them by a key.",
"version": "1.1.0",
"main": "./dist/index.js",
"scripts": {
"test": "mocha",
"build": "tsc && tsc-alias"
},
"type": "module",
"repository": "https://github.com/doublelam/promises-delivery",
"types": "./types/index.d.ts",
"source": "./src/index.ts",
"packageManager": "yarn@1.22.22",
"devDependencies": {
"@eslint/compat": "1.1.1",
"@eslint/eslintrc": "3.2.0",
"@typescript-eslint/eslint-plugin": "8.3.0",
"@typescript-eslint/parser": "8.3.0",
"chai": "5.1.2",
"eslint": "9.9.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "5.2.1",
"mocha": "11.0.1",
"prettier": "3.3.3",
"tsc-alias": "1.8.10",
"typescript": "5.5.4"
},
"license": "MIT",
"author": "Lam <whatisurname7@gmail.com>",
"keywords": [
"js",
"promise",
"deferred",
"resolve",
"reject"
]
}