package.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. {
  2. "name": "async-validator",
  3. "version": "1.8.5",
  4. "description": "validate form asynchronous",
  5. "keywords": [
  6. "validator",
  7. "validate",
  8. "async"
  9. ],
  10. "homepage": "http://github.com/yiminghe/async-validator",
  11. "author": "yiminghe@gmail.com",
  12. "repository": {
  13. "type": "git",
  14. "url": "git@github.com:yiminghe/async-validator.git"
  15. },
  16. "files": [
  17. "lib",
  18. "es"
  19. ],
  20. "main": "./lib/index",
  21. "module": "./es/index",
  22. "jest": {
  23. "collectCoverageFrom": [
  24. "src/*"
  25. ],
  26. "transform": {
  27. "\\.jsx?$": "./node_modules/rc-tools/scripts/jestPreprocessor.js"
  28. }
  29. },
  30. "bugs": {
  31. "url": "http://github.com/yiminghe/async-validator/issues"
  32. },
  33. "licenses": "MIT",
  34. "config": {
  35. "port": 8010
  36. },
  37. "scripts": {
  38. "build": "rc-tools run build",
  39. "gh-pages": "rc-tools run gh-pages",
  40. "start": "rc-tools run server",
  41. "pub": "rc-tools run pub --babel-runtime",
  42. "lint": "rc-tools run lint",
  43. "test": "jest",
  44. "coverage": "jest --coverage && cat ./coverage/lcov.info | coveralls"
  45. },
  46. "devDependencies": {
  47. "coveralls": "^2.13.1",
  48. "jest": "20.x",
  49. "pre-commit": "1.x",
  50. "rc-tools": "6.x"
  51. },
  52. "pre-commit": [
  53. "lint"
  54. ],
  55. "dependencies": {
  56. "babel-runtime": "6.x"
  57. }
  58. }