package.json 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. {
  2. "name": "@json-editor/json-editor",
  3. "title": "JSONEditor",
  4. "description": "JSON Schema based editor",
  5. "version": "1.1.0-beta.0",
  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",
  32. "preversion": "npm run docker-test",
  33. "version": "",
  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. "chromedriver": "^2.36.0",
  42. "grunt": "^1.0.2",
  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.0.0",
  48. "grunt-run": "^0.7.0",
  49. "mocha": "^2.5.3",
  50. "selenium-webdriver": "^2.53.3"
  51. },
  52. "dependencies": {}
  53. }