package.json 539 B

123456789101112131415161718192021222324
  1. {
  2. "name": "kind-form-verify",
  3. "version": "1.0.2",
  4. "description": "表单规则验证工具库",
  5. "type": "module",
  6. "main": "lib/index.js",
  7. "author": "kindring",
  8. "keywords": [
  9. "verify",
  10. "utils"
  11. ],
  12. "scripts": {
  13. "docs": "jsdoc2md src/*.js > api.md",
  14. "patch": "npm version patch",
  15. "compile": "npx babel -d lib/ src/",
  16. "prepublishOnly": "npm run compile"
  17. },
  18. "license": "MIT",
  19. "devDependencies": {
  20. "@babel/cli": "^7.23.0",
  21. "@babel/core": "^7.23.2",
  22. "@babel/preset-env": "^7.23.2"
  23. }
  24. }