[d24f17c] | 1 | {
|
---|
| 2 | "name": "@swagger-api/apidom-json-pointer",
|
---|
| 3 | "version": "0.95.0",
|
---|
| 4 | "description": "Evaluate JSON Pointer expressions against ApiDOM.",
|
---|
| 5 | "publishConfig": {
|
---|
| 6 | "access": "public",
|
---|
| 7 | "registry": "https://registry.npmjs.org"
|
---|
| 8 | },
|
---|
| 9 | "type": "module",
|
---|
| 10 | "sideEffects": false,
|
---|
| 11 | "unpkg": "./dist/apidom-json-pointer.browser.min.js",
|
---|
| 12 | "main": "./cjs/index.cjs",
|
---|
| 13 | "exports": {
|
---|
| 14 | "types": "./types/dist.d.ts",
|
---|
| 15 | "import": "./es/index.mjs",
|
---|
| 16 | "require": "./cjs/index.cjs"
|
---|
| 17 | },
|
---|
| 18 | "types": "./types/dist.d.ts",
|
---|
| 19 | "scripts": {
|
---|
| 20 | "build": "npm run clean && run-p --max-parallel ${CPU_CORES:-2} typescript:declaration build:es build:cjs build:umd:browser",
|
---|
| 21 | "build:es": "cross-env BABEL_ENV=es babel src --out-dir es --extensions '.ts' --out-file-extension '.mjs' --root-mode 'upward'",
|
---|
| 22 | "build:cjs": "cross-env BABEL_ENV=cjs babel src --out-dir cjs --extensions '.ts' --out-file-extension '.cjs' --root-mode 'upward'",
|
---|
| 23 | "build:umd:browser": "cross-env BABEL_ENV=browser webpack --config config/webpack/browser.config.js --progress",
|
---|
| 24 | "lint": "eslint ./",
|
---|
| 25 | "lint:fix": "eslint ./ --fix",
|
---|
| 26 | "clean": "rimraf ./es ./cjs ./dist ./types",
|
---|
| 27 | "typescript:check-types": "tsc --noEmit",
|
---|
| 28 | "typescript:declaration": "tsc -p declaration.tsconfig.json && rollup -c config/rollup/types.dist.js",
|
---|
| 29 | "test": "cross-env NODE_ENV=test BABEL_ENV=cjs mocha",
|
---|
| 30 | "prepack": "copyfiles -u 3 ../../LICENSES/* LICENSES && copyfiles -u 2 ../../NOTICE .",
|
---|
| 31 | "postpack": "rimraf NOTICE LICENSES"
|
---|
| 32 | },
|
---|
| 33 | "repository": {
|
---|
| 34 | "type": "git",
|
---|
| 35 | "url": "git+https://github.com/swagger-api/apidom.git"
|
---|
| 36 | },
|
---|
| 37 | "author": "Vladimír Gorej",
|
---|
| 38 | "license": "Apache-2.0",
|
---|
| 39 | "dependencies": {
|
---|
| 40 | "@babel/runtime-corejs3": "^7.20.7",
|
---|
| 41 | "@swagger-api/apidom-core": "^0.95.0",
|
---|
| 42 | "@swagger-api/apidom-error": "^0.95.0",
|
---|
| 43 | "@types/ramda": "~0.29.6",
|
---|
| 44 | "ramda": "~0.29.1",
|
---|
| 45 | "ramda-adjunct": "^4.0.0"
|
---|
| 46 | },
|
---|
| 47 | "files": [
|
---|
| 48 | "cjs/",
|
---|
| 49 | "dist/",
|
---|
| 50 | "es/",
|
---|
| 51 | "types/dist.d.ts",
|
---|
| 52 | "LICENSES",
|
---|
| 53 | "NOTICE",
|
---|
| 54 | "README.md",
|
---|
| 55 | "CHANGELOG.md"
|
---|
| 56 | ],
|
---|
| 57 | "gitHead": "c56f672154649ce4b6236e4f5e12e05e34867fd7"
|
---|
| 58 | }
|
---|