package.json 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. {
  2. "name": "jsdoctypeparser",
  3. "description": "Strict JsDoc type expression parser.",
  4. "version": "3.1.0",
  5. "author": "Kuniwak <orga.chem.job@gmail.com>",
  6. "contributors": [
  7. "Brett Zamir",
  8. "Nathan Shively-Sanders"
  9. ],
  10. "keywords": [
  11. "jsdoc",
  12. "type expression",
  13. "parser"
  14. ],
  15. "repository": {
  16. "type": "git",
  17. "url": "git://github.com/jsdoctypeparser/jsdoctypeparser.git"
  18. },
  19. "engines": {
  20. "node": ">=6"
  21. },
  22. "homepage": "https://jsdoctypeparser.github.io/jsdoctypeparser/",
  23. "bugs": {
  24. "mail": "orga.chem.job@gmail.com",
  25. "url": "https://github.com/jsdoctypeparser/jsdoctypeparser/issues"
  26. },
  27. "directories": {
  28. "test": "test"
  29. },
  30. "main": "index.js",
  31. "scripts": {
  32. "prepare": "npm-run-all build",
  33. "pretest": "npm-run-all lint build",
  34. "test": "mocha tests",
  35. "lint": "eslint lib tests",
  36. "clean": "rimraf ./peg_lib",
  37. "postclean": "mkdirp ./peg_lib",
  38. "prebuild": "npm-run-all clean",
  39. "build": "pegjs --cache -o ./peg_lib/jsdoctype.js ./peg_src/jsdoctype.pegjs"
  40. },
  41. "readmeFilename": "README.md",
  42. "devDependencies": {
  43. "chai": "^4.2.0",
  44. "eslint": "^5.16.0",
  45. "mkdirp": "^0.5.1",
  46. "mocha": "^6.0.2",
  47. "npm-run-all": "^4.1.5",
  48. "pegjs": "^0.10.0",
  49. "rimraf": "^2.6.3"
  50. },
  51. "license": "MIT",
  52. "dependencies": {}
  53. }