File: //usr/share/opensearch-dashboards/node_modules/tinymath/package.json
{
"name": "tinymath",
"version": "1.2.1",
"description": "A tiny math expression library with only the stuff I personally care about. Deal with it.",
"main": "lib/tinymath.js",
"module": "lib/tinymath.mjs",
"jsnext:main": "lib/tinymath.mjs",
"browser": "lib/tinymath.min.js",
"scripts": {
"build": "npm run build:grammar && npm run clean && rollup -c rollup.build.js",
"build:grammar": "pegjs -o src/grammar.js src/grammar.pegjs",
"clean": "rimraf lib",
"dev": "npm run clean && rollup --watch -c rollup.dev.js",
"docs": "jsdoc2md --template docs/template/functions.hbs src/functions/*.js > docs/functions.md",
"lint": "eslint src/*.js src/**/*.js test/*.js test/**/*.js",
"lint:fix": "eslint --fix src/*.js src/**/*.js test/*.js test/**/*.js",
"test": "mocha --require esm --colors ./test/*.spec.js ./test/**/*.spec.js",
"test:watch": "mocha --require esm --colors -w ./test/*.spec.js ./test/**/*.spec.js",
"version": "npm run docs",
"pretest": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/elastic/tinymath.git"
},
"author": "Rashid Khan <rashid.khan@elastic.co>",
"contributors": [
"Catherine Liu <catherine.liu@elastic.co>"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/elastic/tinymath"
},
"files": [
"lib"
],
"prettier": {
"printWidth": 100,
"singleQuote": true,
"trailingComma": "es5"
},
"esm": {
"cjs": true
},
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-external-helpers": "^7.2.0",
"@babel/polyfill": "^7.2.5",
"@babel/preset-env": "^7.2.3",
"@elastic/eslint-config-kibana": "^0.15.0",
"@elastic/eslint-import-resolver-kibana": "^2.0.0",
"babel-eslint": "^8.0.0",
"chai": "^4.1.2",
"eslint": "^4.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-babel": "^4.1.1",
"eslint-plugin-import": "^2.6.0",
"eslint-plugin-jest": "^21.0.0",
"eslint-plugin-mocha": "^4.9.0",
"eslint-plugin-prefer-object-spread": "^1.2.1",
"eslint-plugin-prettier": "^2.4.0",
"eslint-plugin-react": "^7.1.0",
"esm": "^3.0.84",
"jsdoc": "^3.5.5",
"jsdoc-to-markdown": "^4.0.1",
"mocha": "^4.0.1",
"object-get": "^2.1.0",
"pegjs": "^0.10.0",
"prettier": "^1.9.2",
"rimraf": "^2.6.2",
"rollup": "^1.1.0",
"rollup-plugin-babel": "^4.3.0",
"rollup-plugin-babel-minify": "^6.2.0",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-filesize": "^6.0.0",
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-plugin-progress": "^1.0.0"
}
}