-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
44 lines (44 loc) · 1.38 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
{
"name": "timeout-abort-controller",
"version": "3.0.0",
"description": "An AbortController that aborts after a specified timeout",
"main": "index.js",
"files": [
"index.js",
"dist/index.d.ts"
],
"scripts": {
"test": "npm run lint && nyc --reporter=lcov --reporter=text tape test.js",
"test:browser": "npm run test:chrome && npm run test:firefox && npm run test:webkit",
"test:chrome": "playwright-test test.js --browser chromium --runner tape",
"test:firefox": "playwright-test test.js --browser firefox --runner tape",
"test:webkit": "playwright-test test.js --browser webkit --runner tape",
"lint": "standard",
"prepare": "rimraf dist && tsc --emitDeclarationOnly --declarationDir dist"
},
"keywords": [],
"author": "Jacob Heun",
"license": "MIT",
"dependencies": {
"retimer": "^3.0.0"
},
"devDependencies": {
"@types/tape": "^4.13.2",
"delay": "^5.0.0",
"nyc": "^15.0.1",
"playwright-test": "^7.1.0",
"rimraf": "^3.0.2",
"standard": "^16.0.3",
"tape": "^5.0.1",
"typescript": "^4.1.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jacobheun/timeout-abort-controller.git"
},
"bugs": {
"url": "https://github.com/jacobheun/timeout-abort-controller/issues"
},
"homepage": "https://github.com/jacobheun/timeout-abort-controller#readme",
"types": "dist/index.d.ts"
}