package.json 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. {
  2. "name": "@json-editor/json-editor",
  3. "title": "JSONEditor",
  4. "description": "JSON Schema based editor",
  5. "version": "1.1.0-beta.1",
  6. "main": "dist/jsoneditor.js",
  7. "author": {
  8. "name": "Jeremy Dorn",
  9. "email": "[email protected]",
  10. "url": "http://jeremydorn.com"
  11. },
  12. "bugs": {
  13. "url": "https://github.com/json-editor/json-editor/issues"
  14. },
  15. "repository": {
  16. "type": "git",
  17. "url": "https://github.com/json-editor/json-editor.git"
  18. },
  19. "keywords": [
  20. "json",
  21. "schema",
  22. "jsonschema",
  23. "editor"
  24. ],
  25. "scripts": {
  26. "prepare": "grunt",
  27. "build": "npm install && grunt",
  28. "start": "grunt watch",
  29. "test": "grunt test",
  30. "serve-test": "grunt serve-test",
  31. "docker-test": "cd tests && docker-compose run --rm node npm run build && docker-compose up -d && docker-compose ps && docker-compose run --rm codeceptjs codeceptjs run --steps",
  32. "preversion": "npm run docker-test",
  33. "version": "grunt string-replace",
  34. "postversion": "git push && git push --tags && npm publish ./ --access public"
  35. },
  36. "license": "MIT",
  37. "engines": {
  38. "node": ">= 0.8.0"
  39. },
  40. "devDependencies": {
  41. "grunt": "^1.0.2",
  42. "ace-builds": "^1.3.3",
  43. "grunt-contrib-concat": "~1.0.0",
  44. "grunt-contrib-connect": "~1.0.0",
  45. "grunt-contrib-jshint": "~1.0.0",
  46. "grunt-contrib-uglify": "~1.0.0",
  47. "grunt-contrib-watch": "^1.1.0",
  48. "grunt-run": "^0.7.0",
  49. "standard": "^11.0.1",
  50. "grunt-string-replace": "^1.3.1",
  51. "jquery": "^3.3.1",
  52. "sceditor": "^2.1.3"
  53. },
  54. "dependencies": {}
  55. }