{
  "name": "@kentico/kontent-core",
  "version": "9.5.0",
  "repository": {
    "type": "git",
    "url": "https://github.com/Kentico/kontent-core-js"
  },
  "private": false,
  "author": "richard sustek",
  "license": "MIT",
  "description": "Core package with shared / common functionality for Kentico Kontent SDKs",
  "keywords": [
    "Kentico SDK",
    "Kentico Kontent"
  ],
  "engines": {
    "node": ">= 8"
  },
  "main": "./dist/cjs/index.js",
  "module": "./dist/es5/index.js",
  "es2015": "./dist/es2015/index.js",
  "types": "./dist/cjs/index.d.ts",
  "standard-version": {
    "scripts": {
      "postchangelog": "npm run set-sdk-version"
    }
  },
  "scripts": {
    "release": "standard-version",
    "ts-lint:fix": "tslint --project ./tsconfig.json --fix",
    "ts-lint:check": "tslint --project ./tsconfig.json",
    "test:node": "npm run build:cjs && mocha -- \"test/node/**/*.js\" --timeout 15000",
    "test:browser": "karma start karma.conf.js",
    "test:dev": "karma start karma-dev.conf.js",
    "test:ci": "karma start karma-ci.conf.js",
    "test:all": "npm run test:node && npm run test:ci",
    "new-patch": "npm version patch && npm run set-sdk-version && npm run check-version",
    "new-minor": "npm version minor && npm run set-sdk-version && npm run check-version",
    "new-major": "npm version major && npm run set-sdk-version && npm run check-version",
    "prepublishOnly": "npm run ts-lint:check && npm run check-version && npm run build:all && npm run test:all",
    "webpack:dev": "webpack --mode development --config webpack.config.js --progress",
    "webpack:prod": "webpack  --mode production --config webpack.config.js --progress",
    "set-sdk-version": "node ./misc/set-sdk-version.js",
    "check-version": "ts-node ./misc/verify-sdk-version.ts",
    "publish:beta": "npm publish --tag=next",
    "build:umd": "npm run webpack:dev && npm run webpack:prod",
    "build:es2015": "tsc --p tsconfig.es2015.json",
    "build:es5": "tsc --p tsconfig.es5.json",
    "build:cjs": "tsc --p tsconfig.cjs.json",
    "build:all": "npm run build:umd && npm run build:cjs && npm run build:es5 && npm run build:es2015",
    "bundle-stats:min": "npm run build:umd && webpack-bundle-analyzer dist/_bundles/stats.min.json",
    "bundle-stats": "npm run build:umd && webpack-bundle-analyzer dist/_bundles/stats.json"
  },
  "dependencies": {
    "axios": "0.26.1"
  },
  "devDependencies": {
    "@types/jasmine": "4.0.0",
    "@types/node": "17.0.22",
    "colors": "1.4.0",
    "core-js": "3.21.1",
    "jasmine-core": "4.0.1",
    "jasmine-spec-reporter": "7.0.0",
    "karma": "6.3.17",
    "karma-chrome-launcher": "3.1.1",
    "karma-cli": "2.0.0",
    "karma-jasmine": "4.0.1",
    "karma-jasmine-html-reporter": "1.7.0",
    "karma-sourcemap-loader": "0.3.8",
    "karma-typescript": "5.5.3",
    "karma-typescript-es6-transform": "5.5.3",
    "karma-webpack": "5.0.0",
    "mocha": "9.2.2",
    "standard-version": "9.3.2",
    "ts-loader": "9.2.8",
    "ts-node": "10.7.0",
    "tslint": "6.1.3",
    "typescript": "4.6.2",
    "webpack": "5.70.0",
    "webpack-bundle-analyzer": "4.5.0",
    "webpack-cli": "4.9.2"
  }
}
