-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
34 lines (34 loc) · 831 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
{
"name": "node-abort-controller",
"version": "3.1.1",
"description": "AbortController for Node based on EventEmitter",
"main": "index.js",
"browser": "browser.js",
"scripts": {
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/southpolesteve/node-abort-controller.git"
},
"keywords": [
"AbortController",
"AbortSignal",
"fetch",
"polyfill"
],
"author": "Steve Faulkner <southpolesteve@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/southpolesteve/node-abort-controller/issues"
},
"homepage": "https://github.com/southpolesteve/node-abort-controller#readme",
"devDependencies": {
"jest": "^27.2.4",
"node-fetch": "^2.6.5",
"whatwg-fetch": "^3.6.2"
},
"jest": {
"testEnvironment": "jsdom"
}
}