|
| 1 | +{ |
| 2 | + "name": "react-command-palette", |
| 3 | + "version": "0.0.1", |
| 4 | + "description": "WAI-ARIA compliant React command palette like the one in Atom", |
| 5 | + "main": "dist/index.js", |
| 6 | + "module": "src/command-palette.js", |
| 7 | + "scripts": { |
| 8 | + "build": "rollup -c --environment BUILD:production", |
| 9 | + "dev": "concurrently --raw --kill-others \"rollup -c -w\" \"jest --watch\"", |
| 10 | + "prettier": "eslint --fix src/", |
| 11 | + "lint": "eslint src/", |
| 12 | + "test": "jest" |
| 13 | + }, |
| 14 | + "jest": { |
| 15 | + "collectCoverage": true, |
| 16 | + "coverageDirectory": "src/__coverage__", |
| 17 | + "collectCoverageFrom": [ |
| 18 | + "**/src/*.{js}", |
| 19 | + "!**/node_modules/**", |
| 20 | + "!src/main.js" |
| 21 | + ], |
| 22 | + "coverageReporters": [ |
| 23 | + "html", |
| 24 | + "json", |
| 25 | + "text" |
| 26 | + ] |
| 27 | + }, |
| 28 | + "repository": { |
| 29 | + "type": "git", |
| 30 | + "url": "git+https://github.com/asabaylus/react-command-palette.git" |
| 31 | + }, |
| 32 | + "keywords": [ |
| 33 | + "react", |
| 34 | + "command", |
| 35 | + "palette", |
| 36 | + "command palette", |
| 37 | + "command-palette", |
| 38 | + "accessibile", |
| 39 | + "react-component" |
| 40 | + ], |
| 41 | + "authors": [ |
| 42 | + "Asa Baylus" |
| 43 | + ], |
| 44 | + "license": "MIT", |
| 45 | + "bugs": { |
| 46 | + "url": "https://github.com/asabaylus/react-command-palette/issues" |
| 47 | + }, |
| 48 | + "homepage": "https://github.com/asabaylus/react-command-palette#readme", |
| 49 | + "peerDependencies": { |
| 50 | + "react": "^0.14.0 || ^15.0.0", |
| 51 | + "react-dom": "^0.14.0 || ^15.0.0" |
| 52 | + }, |
| 53 | + "devDependencies": { |
| 54 | + "babel-cli": "^6.24.1", |
| 55 | + "babel-eslint": "^8.0.2", |
| 56 | + "babel-jest": "^21.2.0", |
| 57 | + "babel-plugin-external-helpers": "^6.22.0", |
| 58 | + "babel-plugin-lodash": "^3.2.11", |
| 59 | + "babel-plugin-transform-es2015-modules-umd": "^6.24.1", |
| 60 | + "babel-plugin-transform-react-jsx": "^6.24.1", |
| 61 | + "babel-plugin-transform-runtime": "^6.23.0", |
| 62 | + "babel-preset-env": "^1.5.2", |
| 63 | + "eslint-config-airbnb": "^16.1.0", |
| 64 | + "eslint-config-prettier": "^2.2.0", |
| 65 | + "eslint-plugin-import": "^2.3.0", |
| 66 | + "eslint-plugin-jest": "^21.3.2", |
| 67 | + "eslint-plugin-jsx-a11y": "^6.0.2", |
| 68 | + "eslint-plugin-prettier": "^2.3.1", |
| 69 | + "eslint-plugin-react": "^7.1.0", |
| 70 | + "jest": "^21.2.1", |
| 71 | + "prettier": "^1.8.2", |
| 72 | + "rollup": "^0.52.0", |
| 73 | + "rollup-plugin-babel": "^3.0.2", |
| 74 | + "rollup-plugin-commonjs": "^8.0.2", |
| 75 | + "rollup-plugin-hypothetical": "^2.0.0", |
| 76 | + "rollup-plugin-livereload": "^0.6.0", |
| 77 | + "rollup-plugin-node-resolve": "^3.0.0", |
| 78 | + "rollup-plugin-postcss": "^0.5.3", |
| 79 | + "rollup-plugin-replace": "^2.0.0", |
| 80 | + "rollup-plugin-serve": "^0.4.2", |
| 81 | + "rollup-watch": "^4.0.0" |
| 82 | + }, |
| 83 | + "dependencies": { |
| 84 | + "autosuggest-highlight": "^3.1.0", |
| 85 | + "concurrently": "^3.5.0", |
| 86 | + "enzyme": "^3.2.0", |
| 87 | + "enzyme-adapter-react-16": "^1.1.0", |
| 88 | + "enzyme-to-json": "^3.2.2", |
| 89 | + "eslint": "4.12.0", |
| 90 | + "fuse.js": "^3.0.5", |
| 91 | + "keymaster": "^1.6.2", |
| 92 | + "mousetrap": "^1.6.1", |
| 93 | + "prop-types": "^15.5.10", |
| 94 | + "raf": "^3.4.0", |
| 95 | + "react": "^16.1.1", |
| 96 | + "react-autosuggest": "^9.2.0", |
| 97 | + "react-dom": "^16.1.1", |
| 98 | + "react-modal": "^3.1.4", |
| 99 | + "react-test-renderer": "^16.1.1" |
| 100 | + } |
| 101 | +} |
0 commit comments