source: node_modules/@swagger-api/apidom-ast/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-ast",
3 "version": "0.95.0",
4 "description": "Tools necessary for parsing stage of ApiDOM, specifically for syntactic analysis.",
5 "publishConfig": {
6 "access": "public",
7 "registry": "https://registry.npmjs.org"
8 },
9 "type": "module",
10 "sideEffects": false,
11 "unpkg": "./dist/apidom.ast.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 "test": "cross-env NODE_ENV=test BABEL_ENV=cjs mocha",
28 "typescript:check-types": "tsc --noEmit",
29 "typescript:declaration": "tsc -p declaration.tsconfig.json && rollup -c config/rollup/types.dist.js",
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": "Vladimir Gorej",
38 "license": "Apache-2.0",
39 "bugs": {
40 "url": "https://github.com/swagger-api/apidom/issues"
41 },
42 "homepage": "https://github.com/swagger-api/apidom#readme",
43 "dependencies": {
44 "@babel/runtime-corejs3": "^7.20.7",
45 "@swagger-api/apidom-error": "^0.95.0",
46 "@types/ramda": "~0.29.6",
47 "ramda": "~0.29.1",
48 "ramda-adjunct": "^4.1.1",
49 "unraw": "^3.0.0"
50 },
51 "files": [
52 "cjs/",
53 "dist/",
54 "es/",
55 "types/dist.d.ts",
56 "LICENSES",
57 "NOTICE",
58 "README.md",
59 "CHANGELOG.md"
60 ],
61 "gitHead": "c56f672154649ce4b6236e4f5e12e05e34867fd7"
62}
Note: See TracBrowser for help on using the repository browser.