Extends the Chrome Developer Tools, adding a new Network Panel in the Developer Tools window with better searching and response previews. https://leviolson.com/posts/chrome-ext-better-network-panel
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

47 lines
1.1 KiB

4 years ago
  1. {
  2. "name": "codemirror",
  3. "version": "5.58.1",
  4. "main": "lib/codemirror.js",
  5. "style": "lib/codemirror.css",
  6. "author": {
  7. "name": "Marijn Haverbeke",
  8. "email": "marijnh@gmail.com",
  9. "url": "http://marijnhaverbeke.nl"
  10. },
  11. "description": "Full-featured in-browser code editor",
  12. "license": "MIT",
  13. "directories": {
  14. "lib": "./lib"
  15. },
  16. "scripts": {
  17. "build": "rollup -c",
  18. "watch": "rollup -w -c",
  19. "prepare": "npm run-script build",
  20. "test": "node ./test/run.js",
  21. "lint": "bin/lint"
  22. },
  23. "devDependencies": {
  24. "@rollup/plugin-buble": "^0.21.3",
  25. "blint": "^1.1.0",
  26. "node-static": "0.7.11",
  27. "puppeteer": "^1.20.0",
  28. "rollup": "^1.26.3"
  29. },
  30. "bugs": "http://github.com/codemirror/CodeMirror/issues",
  31. "keywords": [
  32. "JavaScript",
  33. "CodeMirror",
  34. "Editor"
  35. ],
  36. "homepage": "https://codemirror.net",
  37. "repository": {
  38. "type": "git",
  39. "url": "https://github.com/codemirror/CodeMirror.git"
  40. },
  41. "jspm": {
  42. "directories": {},
  43. "dependencies": {},
  44. "devDependencies": {}
  45. },
  46. "dependencies": {}
  47. }