{
  "name": "@speclynx/apidom-core",
  "version": "4.16.0",
  "description": "Tools for manipulating ApiDOM structures.",
  "keywords": [
    "apidom",
    "api",
    "openapi",
    "swagger",
    "asyncapi",
    "json-schema",
    "arazzo",
    "ast",
    "transformer",
    "typescript",
    "javascript",
    "oas",
    "open-api",
    "specification",
    "spec"
  ],
  "publishConfig": {
    "access": "public",
    "registry": "https://registry.npmjs.org",
    "provenance": true
  },
  "type": "module",
  "sideEffects": false,
  "unpkg": "./dist/apidom-core.browser.min.js",
  "main": "./src/index.cjs",
  "exports": {
    "types": "./types/apidom-core.d.ts",
    "import": "./src/index.mjs",
    "require": "./src/index.cjs"
  },
  "types": "./types/apidom-core.d.ts",
  "scripts": {
    "build": "npm run clean && run-p --max-parallel ${CPU_CORES:-2} typescript:declaration build:es build:cjs build:umd:browser",
    "build:es": "cross-env BABEL_ENV=es babel src --out-dir src --extensions '.ts' --out-file-extension '.mjs' --root-mode 'upward'",
    "build:cjs": "cross-env BABEL_ENV=cjs babel src --out-dir src --extensions '.ts' --out-file-extension '.cjs' --root-mode 'upward'",
    "build:umd:browser": "cross-env BABEL_ENV=browser webpack --config config/webpack/browser.config.js --progress",
    "lint": "eslint ./",
    "lint:fix": "eslint ./ --fix",
    "clean": "rimraf --glob 'src/**/*.mjs' 'src/**/*.cjs' 'test/**/*.mjs' ./dist ./types",
    "typescript:check-types": "tsc --noEmit",
    "typescript:declaration": "tsc -p tsconfig.declaration.json && api-extractor run -l -c ./config/api-extractor/api-extractor.json",
    "test": "npm run build:es && cross-env BABEL_ENV=es babel test --out-dir test --extensions '.ts' --out-file-extension '.mjs' --root-mode 'upward' && cross-env NODE_ENV=test mocha",
    "test:update-snapshots": "cross-env UPDATE_SNAPSHOT=1 NODE_ENV=test mocha",
    "prepack": "copyfiles -u 3 ../../LICENSES/* LICENSES && copyfiles -u 2 ../../NOTICE .",
    "postpack": "rimraf NOTICE LICENSES"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/speclynx/apidom.git"
  },
  "author": "Vladimír Gorej",
  "license": "Apache-2.0",
  "dependencies": {
    "@babel/runtime-corejs3": "^8.0.0",
    "@speclynx/apidom-datamodel": "4.16.0",
    "@speclynx/apidom-error": "4.16.0",
    "@speclynx/apidom-traverse": "4.16.0",
    "ramda": "~0.32.0",
    "ramda-adjunct": "^6.1.0",
    "short-unique-id": "^5.3.2",
    "ts-mixer": "^6.0.4",
    "yaml": "^2.9.0"
  },
  "files": [
    "src/**/*.mjs",
    "src/**/*.cjs",
    "dist/",
    "types/apidom-core.d.ts",
    "LICENSES",
    "NOTICE",
    "README.md",
    "CHANGELOG.md"
  ],
  "gitHead": "252461983339fe06eb64db4e60f8ac8087065f06"
}
