{
  "name": "meeko",
  "version": "1.8.358",
  "description": "meeko自用函数",
  "keywords": [
    "statistics",
    "js",
    "tools",
    "math",
    "Machine Learning",
    "AI",
    "coverage"
  ],
  "main": "index.js",
  "types": "meeko.d.ts",
  "exports": {
    ".": {
      "import": "./index.mjs",
      "require": "./index.js"
    }
  },
  "browser": {
    "./index.js": "./index.browser.js"
  },
  "scripts": {
    "patch": "git add . && git commit -m:pencil2: && npm version patch && npm publish .",
    "cz": "conventional-changelog -p atom -i CHANGELOG.md -s -r 0 && git add . && git status && git cz",
    "push": "npm version patch && npm publish . && git push",
    "jsdoc": "jsdoc ./README.md --configure  ./jsdoc.config.js",
    "testlocal": "standard *.js && istanbul cover ./node_modules/mocha/bin/_mocha -- -r co-mocha --reporter spec --timeout 100000 --recursive tests/",
    "test_new": "nyc mocha --timeout 100000 --recursive tests/",
    "test": "mocha --recursive tests/",
    "cjs2mjs": "rollup -c rollup.config.js",
    "test2": "istanbul cover ./node_modules/mocha/bin/_mocha -- -r co-mocha --reporter mochawesome --timeout 100000 --recursive tests/",
    "codecov": "nyc mocha --recursive tests/ && cat ./coverage/lcov.info | codecov",
    "cov": "nyc --reporter html --reporter text npm test",
    "coveralls": "nyc --reporter=lcov mocha --timeout 100000 --recursive tests/ && cat ./coverage/lcov.info",
    "gents": "dts-gen -m meeko -o"
  },
  "repository": {
    "type": "git",
    "url": "git://github.com/kongnet/meeko.git"
  },
  "publishConfig": {
    "registry": "https://registry.npmjs.org/"
  },
  "engines": {
    "node": ">= 16.0.0"
  },
  "author": "Kongnet <9601698@qq.com>",
  "license": "MIT",
  "devDependencies": {
    "@babel/core": "^7.17.12",
    "@babel/eslint-parser": "^7.17.0",
    "@rollup/plugin-commonjs": "^22.0.0",
    "@rollup/plugin-json": "^4.1.0",
    "cc-jt": "^0.1.26",
    "chai": "^4.3.6",
    "codecov": "*",
    "conventional-changelog-cli": "^2.0.23",
    "coveralls": "*",
    "cz-jt": "^0.1.11",
    "docdash": "^1.2.0",
    "eslint": "^8.15.0",
    "istanbul": "*",
    "jsdoc": "^4.0.2",
    "mocha": "*",
    "mockjs": "^1.0.0",
    "nyc": "*",
    "rollup-plugin-node-builtins": "^2.1.2",
    "rollup-plugin-node-globals": "^1.4.0"
  },
  "standard": {
    "globals": [
      "$",
      "describe",
      "it",
      "define",
      "db",
      "performance"
    ],
    "ignore": [
      "/lib/tpl.js",
      "/lib/Snowflake.js"
    ]
  },
  "eslintConfig": {
    "plugins": [],
    "parserOptions": {
      "ecmaVersion": "latest",
      "sourceType": "module",
      "ecmaFeatures": {
        "experimentalObjectRestSpread": true,
        "jsx": true,
        "modules": true
      }
    },
    "env": {
      "browser": true,
      "node": true,
      "es6": true,
      "mocha": true
    },
    "globals": {
      "angular": true,
      "$": true
    },
    "rules": {
      "no-unused-vars": 1,
      "camelcase": 0,
      "curly": 2,
      "brace-style": [
        2,
        "1tbs",
        {
          "allowSingleLine": true
        }
      ],
      "quotes": [
        1,
        "single"
      ],
      "semi": 0,
      "no-extra-semi": 1,
      "space-infix-ops": 1,
      "no-console": 0,
      "complexity": [
        1,
        10
      ]
    },
    "extends": "eslint:recommended"
  },
  "config": {
    "commitizen": {
      "path": "./node_modules/cz-jt"
    }
  }
}
