123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158 |
- {
- "_from": "react-ace@^9.4.0",
- "_id": "react-ace@9.4.0",
- "_inBundle": false,
- "_integrity": "sha512-fpY3AGViE1OglXThgn3wZWcPoAxr0bqRYqeG3jY3m1L7OIHo0GfZ3bJI0grhrADDy2i9jQoip9xZfpOFupQCsw==",
- "_location": "/react-ace",
- "_phantomChildren": {},
- "_requested": {
- "type": "range",
- "registry": true,
- "raw": "react-ace@^9.4.0",
- "name": "react-ace",
- "escapedName": "react-ace",
- "rawSpec": "^9.4.0",
- "saveSpec": null,
- "fetchSpec": "^9.4.0"
- },
- "_requiredBy": [
- "#USER",
- "/"
- ],
- "_resolved": "https://registry.npmjs.org/react-ace/-/react-ace-9.4.0.tgz",
- "_shasum": "5c68423b5c7d4bc9332fc8b651187799c0bc97f6",
- "_spec": "react-ace@^9.4.0",
- "_where": "/home/pvvvm505/Документы/Project/Back",
- "author": {
- "name": "James Hrisho"
- },
- "bugs": {
- "url": "https://github.com/securingsincity/react-ace/issues"
- },
- "bundleDependencies": false,
- "dependencies": {
- "ace-builds": "^1.4.12",
- "diff-match-patch": "^1.0.4",
- "lodash.get": "^4.4.2",
- "lodash.isequal": "^4.5.0",
- "prop-types": "^15.7.2"
- },
- "deprecated": false,
- "description": "A react component for Ace Editor",
- "devDependencies": {
- "@babel/cli": "^7.4.4",
- "@babel/core": "^7.4.5",
- "@babel/preset-env": "^7.4.5",
- "@babel/preset-react": "^7.0.0",
- "@babel/register": "^7.4.4",
- "@types/chai": "^4.1.7",
- "@types/enzyme": "^3.9.3",
- "@types/enzyme-adapter-react-16": "^1.0.5",
- "@types/lodash": "^4.14.132",
- "@types/mocha": "^8.0.3",
- "@types/node": "^14.0.5",
- "@types/prop-types": "^15.7.1",
- "@types/react": "^16.8.18",
- "@types/react-dom": "^17.0.0",
- "@types/sinon": "^9.0.0",
- "babel-eslint": "^10.0.1",
- "babel-loader": "^8.0.6",
- "chai": "^4.2.0",
- "coveralls": "^3.0.2",
- "enzyme": "^3.11.0",
- "enzyme-adapter-react-16": "^1.15.6",
- "eslint": "7.11.0",
- "eslint-plugin-import": "^2.17.3",
- "eslint-plugin-jsx-a11y": "^6.2.1",
- "eslint-plugin-react": "^7.13.0",
- "husky": "^4.2.3",
- "jsdom": "16.5.1",
- "minimist": ">=1.2.2",
- "mocha": "8.3.2",
- "node-forge": ">=0.10.0",
- "nyc": "15.1.0",
- "prettier": "^2.0.5",
- "pretty-quick": "^2.0.0",
- "react": "^16.8.6",
- "react-dom": "^16.8.6",
- "react-test-renderer": "^16.8.6",
- "rimraf": "3.0.2",
- "sinon": "9.2.4",
- "ts-loader": "^8.0.2",
- "ts-node": "^9.1.1",
- "tslint": "^6.1.2",
- "tslint-react": "^5.0.0",
- "typescript": "^4.2.3",
- "webpack": "5.28.0",
- "webpack-cli": "4.6.0",
- "webpack-dev-server": "3.11.2"
- },
- "homepage": "https://github.com/securingsincity/react-ace#readme",
- "husky": {
- "hooks": {
- "pre-commit": "pretty-quick --staged"
- }
- },
- "keywords": [
- "ace",
- "ace editor",
- "react-component",
- "react"
- ],
- "license": "MIT",
- "main": "lib/index.js",
- "name": "react-ace",
- "nyc": {
- "exclude": [
- "**/*.spec.js",
- "**/setup.js",
- "node_modules"
- ],
- "extension": [
- ".js",
- ".jsx",
- ".tsx",
- ".ts"
- ],
- "reporter": [
- "lcov",
- "text-lcov",
- "text",
- "html"
- ]
- },
- "peerDependencies": {
- "react": "^0.13.0 || ^0.14.0 || ^15.0.1 || ^16.0.0 || ^17.0.0",
- "react-dom": "^0.13.0 || ^0.14.0 || ^15.0.1 || ^16.0.0 || ^17.0.0"
- },
- "prettier": {
- "singleQuote": false,
- "trailingComma": "none",
- "arrowParens": "avoid"
- },
- "repository": {
- "type": "git",
- "url": "git+ssh://git@github.com/securingsincity/react-ace.git"
- },
- "scripts": {
- "build": "npm run build:lib && npm run build:umd && npm run build:umd:min",
- "build:example": "webpack --config webpack.config.example.js",
- "build:lib": "tsc",
- "build:umd": "webpack ./src/index.ts -o dist/react-ace.js --config webpack.config.development.js",
- "build:umd:min": "webpack ./src/index.ts -o dist/react-ace.min.js --config webpack.config.production.js",
- "check": "npm run lint",
- "clean": "rimraf lib dist",
- "coverage": "nyc npm run test",
- "example": "webpack-dev-server --config webpack.config.example.js",
- "lint": "tslint src/*",
- "postversion": "git push && git push --tags && npm run clean",
- "prepare": "npm run build:lib",
- "prepublishOnly": "npm run clean && npm run build",
- "prettier": "prettier --write \"src/**\" \"example/*.js\"",
- "preversion": "npm run clean && npm run check",
- "test": "_mocha --require ts-node/register --require @babel/register --require tests/setup.js tests/src/*.spec.js --exit",
- "version": "npm run build"
- },
- "types": "lib/index.d.ts",
- "version": "9.4.0"
- }
|