{ "name": "@monaco-editor/react", "version": "3.6.3", "description": "Monaco editor wrapper for easy/one-line integration with React applications (e.g. powered by create-react-app) without need of webpack configuration files", "author": "Suren Atoyan ", "main": "lib/index.js", "module": "lib/index.js", "types": "lib/index.d.ts", "scripts": { "lint": "npx eslint src", "build": "npx babel src --out-dir lib && cp ./src/index.d.ts ./lib/", "prepublish": "npm test && npm run lint && npm run build", "test": "npx jest" }, "repository": { "type": "git", "url": "git+https://github.com/suren-atoyan/monaco-react.git" }, "keywords": [ "monaco", "editor", "react", "vscode", "code", "text" ], "license": "MIT", "bugs": { "url": "https://github.com/suren-atoyan/monaco-react/issues" }, "homepage": "https://github.com/suren-atoyan/monaco-react#readme", "peerDependencies": { "monaco-editor": "^0.20.0", "prop-types": "^15.7.2", "react": "^16.8.6", "react-dom": "^16.8.6" }, "devDependencies": { "@babel/cli": "^7.10.5", "@babel/core": "^7.11.0", "@babel/plugin-transform-runtime": "^7.11.0", "@babel/preset-env": "^7.11.0", "@babel/preset-react": "^7.10.4", "@testing-library/jest-dom": "^5.1.1", "@testing-library/react": "^9.4.0", "babel-eslint": "10.0.3", "babel-jest": "^25.1.0", "eslint": "6.6.0", "eslint-config-react-app": "^5.2.0", "eslint-plugin-flowtype": "4.6.0", "eslint-plugin-import": "2.20.1", "eslint-plugin-jsx-a11y": "6.2.3", "eslint-plugin-react": "7.18.3", "eslint-plugin-react-hooks": "2.4.0", "husky": "^4.2.3", "jest": "^25.1.0", "react": "^16.12.0", "react-dom": "^16.12.0" }, "babel": { "presets": [ "@babel/preset-env", "@babel/preset-react" ], "plugins": [ [ "@babel/transform-runtime", { "helpers": true, "version": "7.11.0" } ] ] }, "husky": { "hooks": { "pre-commit": "npm test && npm run lint" } }, "jest": { "testPathIgnorePatterns": [ "/node_modules/", "/demo/" ] }, "dependencies": { "@babel/runtime": "^7.11.0", "state-local": "^1.0.1" } }