{ "name": "@mat3ra/prode", "version": "0.0.0", "description": "PROperty DEfinitions", "scripts": { "test": "nyc --reporter=text mocha --recursive --bail", "test:coverage": "nyc --reporter=text --reporter=html --reporter=lcov mocha --recursive --bail", "test:coverage:html": "nyc --reporter=html mocha --recursive --bail", "test:coverage:check": "nyc --reporter=text --check-coverage mocha --recursive --bail", "test:coverage:view": "node scripts/view-coverage.js", "lint": "eslint --cache src/js tests/js && prettier --write src/js tests/js", "lint:fix": "eslint --fix --cache src/js tests/js && prettier --write src/js tests/js", "lint:staged": "lint-staged", "prepare": "husky install", "prettier": "prettier --check src/js tests/js", "transpile": "tsc -p tsconfig-transpile.json", "generate-mixins": "ts-node scripts/generate-mixins.ts" }, "repository": { "type": "git", "url": "https://github.com/Exabyte-io/prode.git" }, "main": "dist/js/index.js", "types": "dist/js/index.d.ts", "files": [ "/dist", "/src/js", ".babelrc", "tsconfig.json" ], "exports": { ".": { "types": "./dist/js/index.d.ts", "default": "./dist/js/index.js" }, "./types": { "types": "./dist/js/types.d.ts", "default": "./dist/js/types.js" } }, "author": "Exabyte Inc.", "bugs": { "url": "https://github.com/Exabyte-io/prode/issues" }, "license": "Apache-2.0", "homepage": "https://github.com/Exabyte-io/prode", "dependencies": { "@types/highcharts": "^5.0.44", "lodash": "^4.17.21" }, "devDependencies": { "@babel/eslint-parser": "^7.16.3", "@exabyte-io/eslint-config": "2025.5.13-0", "@mat3ra/code": "2025.10.8-0", "@mat3ra/esse": "2025.10.8-0", "@mat3ra/made": "2025.10.7-0", "@mat3ra/tsconfig": "2024.6.3-0", "@typescript-eslint/eslint-plugin": "^5.9.1", "@typescript-eslint/parser": "^5.9.1", "@types/lodash": "^4.17.20", "chai": "^4.3.4", "eslint": "^7.32.0", "eslint-config-airbnb": "^19.0.2", "eslint-config-prettier": "^8.5.0", "eslint-import-resolver-exports": "^1.0.0-beta.5", "eslint-import-resolver-meteor": "^0.4.0", "eslint-import-resolver-node": "^0.3.9", "eslint-plugin-import": "^2.25.3", "eslint-plugin-jsdoc": "^37.1.0", "eslint-plugin-jsx-a11y": "^6.5.1", "eslint-plugin-mui-path-imports": "0.0.15", "eslint-plugin-prettier": "^4.2.1", "eslint-plugin-react": "^7.30.0", "eslint-plugin-simple-import-sort": "^7.0.0", "husky": "^7.0.4", "lint-staged": "^12.1.2", "mocha": "^9.1.3", "nyc": "^15.1.0", "prettier": "^2.7.1", "ts-node": "^10.9.2", "typescript": "^5.6.0" }, "peerDependencies": { "@mat3ra/code": "*", "@mat3ra/esse": "*", "@mat3ra/made": "*" }, "engines": { "node": ">=14.0.0" }, "lint-staged": { "src/js/**/*.{js,ts}": [ "eslint --fix --cache", "prettier --write" ], "tests/js/**/*.{js,ts}": [ "eslint --fix --cache", "prettier --write" ] } }