abortcontroller-deadline
Advanced tools
Comparing version
{ | ||
"name": "abortcontroller-deadline", | ||
"version": "1.0.1", | ||
"version": "2.0.0", | ||
"description": "Create an AbortController which aborts after a set number of milliseconds pass (a deadline). Optionally connects to other AbortSignals.", | ||
@@ -21,43 +21,54 @@ "keywords": [ | ||
}, | ||
"main": "dist/index.js", | ||
"exports": { | ||
"require": "./dist/index.js", | ||
"import": "./dist-esm/index.mjs" | ||
}, | ||
"types": "dist/index.d.ts", | ||
"files": [ | ||
"dist" | ||
"dist", | ||
"dist-esm" | ||
], | ||
"config": { | ||
"scripty": { | ||
"logLevel": "warn", | ||
"path": "../../scripts" | ||
} | ||
}, | ||
"jest": { | ||
"coverageDirectory": "coverage", | ||
"testEnvironment": "node", | ||
"preset": "ts-jest", | ||
"globals": { | ||
"ts-jest": {} | ||
} | ||
"preset": "ts-jest" | ||
}, | ||
"dependencies": { | ||
"abortcontroller-chain": "^1.0.2" | ||
"abortcontroller-chain": "^2.0.0" | ||
}, | ||
"devDependencies": { | ||
"@tsconfig/node14": "1.0.1", | ||
"@types/jest": "27.4.0", | ||
"@types/node": "16.11.19", | ||
"@typescript-eslint/eslint-plugin": "5.9.1", | ||
"@typescript-eslint/parser": "5.9.1", | ||
"eslint": "8.6.0", | ||
"eslint-config-prettier": "8.3.0", | ||
"eslint-plugin-jest": "25.7.0", | ||
"eslint-plugin-unicorn": "40.0.0", | ||
"jest": "27.4.7", | ||
"prettier": "2.5.1", | ||
"ts-jest": "27.1.3", | ||
"typescript": "4.5.4" | ||
"@tsconfig/node14": "1.0.3", | ||
"@types/jest": "29.2.1", | ||
"@types/node": "16.18.3", | ||
"@typescript-eslint/eslint-plugin": "5.42.0", | ||
"@typescript-eslint/parser": "5.42.0", | ||
"eslint": "8.26.0", | ||
"eslint-config-prettier": "8.5.0", | ||
"eslint-plugin-jest": "27.1.3", | ||
"eslint-plugin-unicorn": "44.0.2", | ||
"jest": "29.2.2", | ||
"jest-environment-jsdom": "29.2.2", | ||
"prettier": "2.7.1", | ||
"scripty": "2.1.1", | ||
"ts-jest": "29.0.3", | ||
"typescript": "4.8.4" | ||
}, | ||
"scripts": { | ||
"type-check": "tsc --noEmit", | ||
"lint": "eslint .", | ||
"test": "jest", | ||
"test:web": "jest --env=jsdom", | ||
"test:ci": "jest --coverage --ci", | ||
"build": "rm -rf dist && tsc -p tsconfig.dist.json", | ||
"format": "prettier --write .", | ||
"format:check": "prettier --check ." | ||
"type-check": "scripty", | ||
"lint": "scripty", | ||
"test": "scripty", | ||
"test:web": "scripty", | ||
"test:ci": "scripty", | ||
"build:esm": "scripty", | ||
"build:cjs": "scripty", | ||
"build": "SCRIPTY_PARALLEL=true scripty", | ||
"format": "scripty", | ||
"format:check": "scripty" | ||
} | ||
} |
10922
25.66%8
14.29%73
48.98%15
15.38%+ Added
- Removed
Updated