source: node_modules/@swagger-api/apidom-ns-json-schema-draft-4/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: 2.2 KB
Line 
1{
2 "name": "@swagger-api/apidom-ns-json-schema-draft-4",
3 "version": "0.95.0",
4 "description": "JSON Schema Draft 4 namespace for ApiDOM.",
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-ns-json-schema-draft-4.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 "test": "cross-env NODE_ENV=test BABEL_ENV=cjs mocha",
31 "test:update-snapshots": "cross-env UPDATE_SNAPSHOT=1 BABEL_ENV=cjs mocha",
32 "typescript:check-types": "tsc --noEmit",
33 "typescript:declaration": "tsc -p declaration.tsconfig.json && rollup -c config/rollup/types.dist.js",
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": "Vladimir 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-core": "^0.95.0",
47 "@types/ramda": "~0.29.6",
48 "ramda": "~0.29.1",
49 "ramda-adjunct": "^4.1.1",
50 "stampit": "^4.3.2"
51 },
52 "files": [
53 "cjs/",
54 "dist/",
55 "es/",
56 "types/dist.d.ts",
57 "LICENSES",
58 "NOTICE",
59 "README.md",
60 "CHANGELOG.md"
61 ],
62 "gitHead": "c56f672154649ce4b6236e4f5e12e05e34867fd7"
63}
Note: See TracBrowser for help on using the repository browser.