用工小程序前端代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

42 lines
1.2 KiB

7 months ago
7 months ago
7 months ago
7 months ago
7 months ago
7 months ago
7 months ago
  1. {
  2. "name": "jstoxml",
  3. "version": "2.2.9",
  4. "description": "Converts JavaScript/JSON to XML (for RSS, Podcasts, AMP, etc.)",
  5. "homepage": "http://github.com/davidcalhoun/jstoxml",
  6. "keywords": [
  7. "amp",
  8. "google amp",
  9. "json",
  10. "podcast",
  11. "rss",
  12. "sitemap",
  13. "site map",
  14. "xml"
  15. ],
  16. "main": "dist/jstoxml.js",
  17. "author": "David Calhoun <david.b.calhoun@gmail.com>",
  18. "license": "MIT",
  19. "repository": "git://github.com/davidcalhoun/jstoxml",
  20. "scripts": {
  21. "dist": "./dist.sh",
  22. "prepare": "./dist.sh",
  23. "test": "rm -rf dist && ./dist.sh && mocha test.js",
  24. "patch": "npm version patch && npm run npm-publish",
  25. "minor": "npm version minor && npm run npm-publish",
  26. "major": "npm version major && npm run npm-publish",
  27. "npm-publish": "npm publish && git push && git push --tags",
  28. "bump": "npm outdated & npm update && npm audit fix && npm test"
  29. },
  30. "unpkg": "dist/jstoxml-min.js",
  31. "devDependencies": {
  32. "@babel/cli": "^7.16.0",
  33. "@babel/core": "^7.16.5",
  34. "@babel/plugin-transform-modules-umd": "^7.16.5",
  35. "@babel/preset-env": "^7.16.5",
  36. "babel-eslint": "^10.1.0",
  37. "eslint": "^8.5.0",
  38. "mocha": "^9.1.3",
  39. "prettier": "^2.5.1",
  40. "uglify-es": "^3.3.9"
  41. }
  42. }