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

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

Initial commit

  • Property mode set to 100644
File size: 2.5 KB
Line 
1{
2 "name": "@swagger-api/apidom-core",
3 "version": "0.95.0",
4 "description": "Tools for manipulating ApiDOM structures.",
5 "publishConfig": {
6 "access": "public",
7 "registry": "https://registry.npmjs.org"
8 },
9 "type": "module",
10 "sideEffects": [
11 "./es/refractor/registration.mjs",
12 "./cjs/refractor/registration.cjs"
13 ],
14 "unpkg": "./dist/apidom-core.browser.min.js",
15 "main": "./cjs/index.cjs",
16 "exports": {
17 "types": "./types/dist.d.ts",
18 "import": "./es/index.mjs",
19 "require": "./cjs/index.cjs"
20 },
21 "types": "./types/dist.d.ts",
22 "scripts": {
23 "build": "npm run clean && run-p --max-parallel ${CPU_CORES:-2} typescript:declaration build:es build:cjs build:umd:browser",
24 "build:es": "cross-env BABEL_ENV=es babel src --out-dir es --extensions '.ts' --out-file-extension '.mjs' --root-mode 'upward'",
25 "build:cjs": "cross-env BABEL_ENV=cjs babel src --out-dir cjs --extensions '.ts' --out-file-extension '.cjs' --root-mode 'upward'",
26 "build:umd:browser": "cross-env BABEL_ENV=browser webpack --config config/webpack/browser.config.js --progress",
27 "lint": "eslint ./",
28 "lint:fix": "eslint ./ --fix",
29 "clean": "rimraf ./es ./cjs ./dist ./types",
30 "typescript:check-types": "tsc -p check-types.tsconfig.json --noEmit",
31 "typescript:declaration": "tsc -p declaration.tsconfig.json && rollup -c config/rollup/types.dist.js && copyfiles -u 2 ../@types/minim.d.ts ./types && node ../../scripts/file-replace-bof.js './types/dist.d.ts' '/// <reference path=\"./minim.d.ts\" />'",
32 "test": "cross-env NODE_ENV=test BABEL_ENV=cjs mocha",
33 "test:update-snapshots": "cross-env UPDATE_SNAPSHOT=1 BABEL_ENV=cjs mocha",
34 "prepack": "copyfiles -u 3 ../../LICENSES/* LICENSES && copyfiles -u 2 ../../NOTICE .",
35 "postpack": "rimraf NOTICE LICENSES"
36 },
37 "repository": {
38 "type": "git",
39 "url": "git+https://github.com/swagger-api/apidom.git"
40 },
41 "author": "Vladimír Gorej",
42 "license": "Apache-2.0",
43 "dependencies": {
44 "@babel/runtime-corejs3": "^7.20.7",
45 "@swagger-api/apidom-ast": "^0.95.0",
46 "@swagger-api/apidom-error": "^0.95.0",
47 "@types/ramda": "~0.29.6",
48 "minim": "~0.23.8",
49 "ramda": "~0.29.1",
50 "ramda-adjunct": "^4.1.1",
51 "short-unique-id": "^5.0.2",
52 "stampit": "^4.3.2"
53 },
54 "files": [
55 "cjs/",
56 "dist/",
57 "es/",
58 "types/dist.d.ts",
59 "types/minim.d.ts",
60 "LICENSES",
61 "NOTICE",
62 "README.md",
63 "CHANGELOG.md"
64 ],
65 "gitHead": "c56f672154649ce4b6236e4f5e12e05e34867fd7"
66}
Note: See TracBrowser for help on using the repository browser.