-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) Β· 975 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
{
"name": "o-promise",
"version": "1.3.0",
"description": "Open Promise π β Micro tool for creating Promise likes Deferred (with AbortController support).",
"repository": {
"type": "git",
"url": "[email protected]:RubaXa/open-promise.git"
},
"homepage": "https://github.com/RubaXa/open-promise",
"main": "./index.js",
"scripts": {
"test": "jest --coverage",
"release": "npm test && npm_config_registry=https://registry.npmjs.com npm publish",
"prepublishOnly": "tsc"
},
"keywords": [
"open",
"promise",
"util",
"defer",
"deferred",
"fetch",
"abort",
"controller"
],
"author": "Lebedev Konstantin <[email protected]>",
"license": "MIT",
"devDependencies": {
"@tsconfig/recommended": "^1.0.1",
"@types/jest": "^29.2.4",
"@types/node": "^18.11.18",
"expect-type": "^0.15.0",
"jest": "^29.3.1",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
}
}