source: node_modules/@swagger-api/apidom-error/package.json

main
Last change on this file was d24f17c, checked in by Aleksandar Panovski <apano77@…>, 15 months ago

Initial commit

  • Property mode set to 100644
File size: 1.9 KB
Line 
1{
2 "name": "@swagger-api/apidom-error",
3 "version": "0.95.0",
4 "description": "Backward compatible custom ApiDOM errors with causes.",
5 "publishConfig": {
6 "access": "public",
7 "registry": "https://registry.npmjs.org"
8 },
9 "type": "module",
10 "sideEffects": false,
11 "unpkg": "./dist/apidom-error.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": "copyfiles -u 1 'src/**/*.d.ts' ./types && 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 },
42 "files": [
43 "cjs/",
44 "dist/",
45 "es/",
46 "types/dist.d.ts",
47 "LICENSES",
48 "NOTICE",
49 "README.md",
50 "CHANGELOG.md"
51 ],
52 "gitHead": "c56f672154649ce4b6236e4f5e12e05e34867fd7"
53}
Note: See TracBrowser for help on using the repository browser.