package.json 519 B

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