用工小程序前端代码
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.

50 lines
1.0 KiB

10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
  1. {
  2. "name": "acorn",
  3. "description": "ECMAScript parser",
  4. "homepage": "https://github.com/acornjs/acorn",
  5. "main": "dist/acorn.js",
  6. "types": "dist/acorn.d.ts",
  7. "module": "dist/acorn.mjs",
  8. "exports": {
  9. ".": [
  10. {
  11. "import": "./dist/acorn.mjs",
  12. "require": "./dist/acorn.js",
  13. "default": "./dist/acorn.js"
  14. },
  15. "./dist/acorn.js"
  16. ],
  17. "./package.json": "./package.json"
  18. },
  19. "version": "8.14.0",
  20. "engines": {
  21. "node": ">=0.4.0"
  22. },
  23. "maintainers": [
  24. {
  25. "name": "Marijn Haverbeke",
  26. "email": "marijnh@gmail.com",
  27. "web": "https://marijnhaverbeke.nl"
  28. },
  29. {
  30. "name": "Ingvar Stepanyan",
  31. "email": "me@rreverser.com",
  32. "web": "https://rreverser.com/"
  33. },
  34. {
  35. "name": "Adrian Heine",
  36. "web": "http://adrianheine.de"
  37. }
  38. ],
  39. "repository": {
  40. "type": "git",
  41. "url": "git+https://github.com/acornjs/acorn.git"
  42. },
  43. "license": "MIT",
  44. "scripts": {
  45. "prepare": "cd ..; npm run build:main"
  46. },
  47. "bin": {
  48. "acorn": "bin/acorn"
  49. }
  50. }