{
  "name": "race-timeout-anywhere",
  "author": "Lloyd Brookes <75pound@gmail.com>",
  "version": "2.0.0",
  "description": "A Promise.race timeout function which can be used with any module loader",
  "main": "./index.mjs",
  "exports": {
    "import": "./index.mjs",
    "require": "./dist/index.cjs"
  },
  "repository": "https://github.com/75lb/race-timeout-anywhere",
  "keywords": [
    "promise",
    "race",
    "timeout",
    "isomorphic",
    "es6"
  ],
  "license": "MIT",
  "engines": {
    "node": ">=14"
  },
  "files": [
    "index.mjs",
    "dist"
  ],
  "scripts": {
    "test": "npm run dist && node test.js",
    "dist": "rollup --exports auto -f cjs -o dist/index.cjs index.mjs"
  },
  "devDependencies": {
    "rollup": "^2.51.0",
    "sleep-anywhere": "^1.1.3"
  }
}
