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.2 KiB

2 weeks ago
  1. {
  2. "name": "vue-jsonp",
  3. "version": "2.0.0",
  4. "description": "A tiny library for handling JSONP request.",
  5. "main": "./dist/index.js",
  6. "module": "./dist/index.esm.js",
  7. "keywords": [
  8. "Vue",
  9. "JSONP"
  10. ],
  11. "files": [
  12. "dist/",
  13. "index.d.ts",
  14. "README.md"
  15. ],
  16. "scripts": {
  17. "build": "rollup -c",
  18. "test": "jest",
  19. "pretest": "npm run build",
  20. "preversion": "npm run test",
  21. "prepublish": "npm run test"
  22. },
  23. "author": {
  24. "name": "LancerComet",
  25. "email": "chw644@hotmail.com"
  26. },
  27. "repository": {
  28. "type": "git",
  29. "url": "https://github.com/LancerComet/vue-jsonp.git"
  30. },
  31. "license": "MIT",
  32. "devDependencies": {
  33. "@types/expect-puppeteer": "^4.4.3",
  34. "@types/jest": "^26.0.14",
  35. "@types/jest-environment-puppeteer": "^4.4.0",
  36. "@types/puppeteer": "^3.0.2",
  37. "jest": "^26.4.2",
  38. "jest-puppeteer": "^4.4.0",
  39. "puppeteer": "^5.3.1",
  40. "rollup": "^2.28.2",
  41. "rollup-plugin-cleanup": "^3.2.1",
  42. "rollup-plugin-delete": "^2.0.0",
  43. "rollup-plugin-terser": "^7.0.2",
  44. "rollup-plugin-typescript2": "^0.27.3",
  45. "ts-jest": "^26.4.1",
  46. "tslint": "^6.1.3",
  47. "typescript": "^4.0.3",
  48. "vue": "^2.6.12"
  49. }
  50. }