r37r0m0d3l/of

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "author": "Anton Trofimenko",
  "bugs": {
    "url": "https://github.com/await-of/of/issues"
  },
  "contributors": [
    {
      "email": "r37r0m0d3l@protonmail.com",
      "name": "Anton Trofimenko"
    }
  ],
  "dependencies": {},
  "description": "Promise wrapper with some sugar",
  "devDependencies": {
    "@babel/core": "7.15.5",
    "@babel/plugin-proposal-class-properties": "7.14.5",
    "@babel/plugin-proposal-private-methods": "7.14.5",
    "@babel/preset-env": "7.15.6",
    "@r37r0m0d3l/rollup-config-pkg": "git+https://github.com/r37r0m0d3l/rollup-config-pkg.git",
    "@rollup/plugin-commonjs": "20.0.0",
    "@rollup/plugin-node-resolve": "13.0.5",
    "babel-core": "7.0.0-bridge.0",
    "babel-eslint": "10.1.0",
    "eslint": "7.32.0",
    "eslint-config-prettier": "8.3.0",
    "eslint-plugin-prettier": "4.0.0",
    "jest": "27.2.1",
    "npm-check": "5.9.2",
    "prettier": "2.4.1",
    "remark-cli": "10.0.0",
    "remark-lint": "9.1.0",
    "remark-preset-lint-consistent": "5.1.0",
    "remark-preset-lint-markdown-style-guide": "5.1.0",
    "remark-preset-lint-recommended": "6.1.0",
    "rollup": "2.57.0",
    "rollup-plugin-babel": "4.4.0",
    "rollup-plugin-terser": "7.0.2"
  },
  "engines": {
    "node": ">=12.16.3"
  },
  "engineStrict": false,
  "exports": {
    ".": {
      "browser": {
        "import": "./dist/of.mjs",
        "require": "./dist/of.cjs"
      },
      "node": {
        "import": "./dist/of.mjs",
        "require": "./dist/of.cjs"
      },
      "import": "./dist/of.mjs",
      "require": "./dist/of.cjs",
      "default": "./dist/of.js"
    }
  },
  "files": [
    "dist/of.cjs",
    "dist/of.cjs.map",
    "dist/of.d.ts",
    "dist/of.js",
    "dist/of.js.map",
    "dist/of.mjs",
    "dist/of.mjs.map"
  ],
  "homepage": "https://of.js.org",
  "keywords": [
    "async await",
    "async",
    "await",
    "error swallowing",
    "errors handling",
    "promise",
    "try-catch",
    "wrapper"
  ],
  "license": "MIT",
  "main": "./dist/of.cjs",
  "module": "./dist/of.mjs",
  "name": "@await-of/of",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/await-of/of.git"
  },
  "scripts": {
    "build": "rollup --config rollup.config.mjs",
    "build:watch": "rollup --config rollup.config.mjs --watch",
    "docs:serve": "docsify serve docs",
    "lint": "eslint ./src/**/*.js",
    "lint:md": "remark .",
    "package:pack": "npm prune --production && npm shrinkwrap",
    "package:upgrade": "npx npm-check --update",
    "test": "jest",
    "test:coverage": "jest --collect-coverage"
  },
  "type": "module",
  "types": "./dist/of.d.ts",
  "version": "2.4.10",
  "optionalDependencies": {
    "fsevents": "2.3.2"
  }
}