{
  "name": "import-esm",
  "version": "0.0.6",
  "description": "Import ECMAScript modules in the safe way",
  "keywords": [
    "esm",
    "ES Module",
    "ECMAScript Modules",
    "Dynamic import",
    "import",
    "load",
    "mjs"
  ],
  "homepage": "https://github.com/fisker/import-esm#readme",
  "bugs": {
    "url": "https://github.com/fisker/import-esm/issues"
  },
  "repository": "fisker/import-esm",
  "funding": "https://github.com/fisker/import-esm?sponsor=1",
  "license": "MIT",
  "author": {
    "name": "fisker Cheung",
    "email": "lionkay@gmail.com",
    "url": "https://www.fiskercheung.com/"
  },
  "sideEffects": false,
  "main": "index.js",
  "files": [
    "index.js",
    "import.js",
    "import-from.js"
  ],
  "scripts": {
    "clean": "run-p clean:*",
    "clean:dist": "del-cli dist",
    "dist": "run-p dist:*",
    "dist:npm": "np --yolo --no-yarn",
    "format": "run-p format:*",
    "format:eslint": "yarn lint:eslint --fix",
    "format:markdown": "yarn lint:markdown --fix",
    "format:package-json": "sort-package-json \"package.json\" \"packages/*/package.json\"",
    "format:prettier": "yarn lint:prettier --write",
    "lint": "run-p lint:*",
    "lint:eslint": "eslint \"**/*.{js,mjs,vue}\"",
    "lint:markdown": "markdownlint \"**/*.md\" --ignore \"**/node_modules/**\"",
    "lint:package-json": "yarn run format:package-json --check",
    "lint:prettier": "prettier \"**/*.{css,html,js,json,less,md,scss,ts,vue,yaml,yml}\" --check",
    "release": "run-s lint test dist",
    "test": "node ./tests/main.js",
    "test-coverage": "nyc run-s test test:flag",
    "test:flag": "node --experimental-modules ./tests/main.js"
  },
  "config": {
    "commitizen": {
      "path": "./node_modules/cz-conventional-changelog"
    }
  },
  "nyc": {
    "include": [
      "*.js"
    ],
    "reporter": [
      "text",
      "lcov"
    ]
  },
  "dependencies": {
    "parent-module": "2.0.0"
  },
  "devDependencies": {
    "@commitlint/cli": "8.3.5",
    "@fisker/commitlint-config": "1.1.7",
    "@fisker/eslint-config": "1.6.6",
    "@fisker/husky-config": "1.1.9",
    "@fisker/lint-staged-config": "1.0.12",
    "@fisker/prettier-config": "1.0.29",
    "cz-conventional-changelog": "3.1.0",
    "del-cli": "3.0.0",
    "eslint": "6.8.0",
    "eslint-plugin-es": "3.0.0",
    "husky": "4.2.3",
    "lint-staged": "10.0.7",
    "markdownlint-cli": "0.22.0",
    "npm-run-all": "4.1.5",
    "nyc": "15.0.0",
    "prettier": "1.19.1",
    "sort-package-json": "1.40.0"
  },
  "publishConfig": {
    "access": "public",
    "registry": "https://registry.npmjs.org/"
  }
}
