package.json 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "name": "fastparse",
  3. "version": "1.1.2",
  4. "description": "A very simple and stupid parser, based on a statemachine and regular expressions.",
  5. "main": "lib/Parser.js",
  6. "scripts": {
  7. "pretest": "npm run lint",
  8. "test": "mocha",
  9. "travis": "npm run cover -- --report lcovonly",
  10. "lint": "eslint lib",
  11. "precover": "npm run lint",
  12. "cover": "istanbul cover node_modules/mocha/bin/_mocha",
  13. "publish-patch": "mocha && npm version patch && git push && git push --tags && npm publish"
  14. },
  15. "repository": {
  16. "type": "git",
  17. "url": "https://github.com/webpack/fastparse.git"
  18. },
  19. "keywords": [
  20. "parser",
  21. "regexp"
  22. ],
  23. "files": [
  24. "lib"
  25. ],
  26. "author": "Tobias Koppers @sokra",
  27. "license": "MIT",
  28. "bugs": {
  29. "url": "https://github.com/webpack/fastparse/issues"
  30. },
  31. "homepage": "https://github.com/webpack/fastparse",
  32. "devDependencies": {
  33. "coveralls": "^2.11.2",
  34. "eslint": "^0.21.2",
  35. "istanbul": "^0.3.14",
  36. "mocha": "^2.2.5",
  37. "should": "^6.0.3"
  38. }
  39. }