package.json 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. {
  2. "name": "@ant-design/icons-vue",
  3. "version": "2.0.0",
  4. "main": "./lib/index.js",
  5. "module": "./es/index.js",
  6. "sideEffects": false,
  7. "repository": {
  8. "type": "git",
  9. "url": "https://github.com/ant-design/ant-design-icons/tree/master/packages/icons-vue"
  10. },
  11. "contributors": [
  12. "tangjinzhou <415800467@qq.com>"
  13. ],
  14. "license": "MIT",
  15. "scripts": {
  16. "start": "vc-tools run server",
  17. "lint": "eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./src",
  18. "compile": "vc-tools run compile --babel-runtime",
  19. "build": "vc-tools run build",
  20. "dist": "vc-tools run dist",
  21. "test": "cross-env NODE_ENV=test jest --config .jest.js",
  22. "prepublish": "npm run lint && npm run test && npm run compile"
  23. },
  24. "files": [
  25. "es",
  26. "lib"
  27. ],
  28. "peerDependencies": {
  29. "@ant-design/icons": "^2.0.0",
  30. "vue": ">=2.5.0",
  31. "vue-template-compiler": ">=2.5.0"
  32. },
  33. "devDependencies": {
  34. "@ant-design/icons": "^2.0.0",
  35. "@types/jest": "^23.3.1",
  36. "@types/node": "^10.5.5",
  37. "@types/vue": "^2.0.0",
  38. "@vue/server-test-utils": "1.0.0-beta.16",
  39. "@vue/test-utils": "1.0.0-beta.16",
  40. "babel-core": "^6.26.3",
  41. "cross-env": "^5.2.0",
  42. "jest": "^23.4.2",
  43. "jest-serializer-vue": "^2.0.2",
  44. "vc-tools": "^1.0.0",
  45. "vue": ">=2.5.0",
  46. "vue-jest": "^2.5.0",
  47. "vue-template-compiler": ">=2.5.0"
  48. },
  49. "dependencies": {
  50. "@ant-design/colors": "^3.1.0",
  51. "babel-runtime": "^6.26.0"
  52. },
  53. "config": {
  54. "port": 9528,
  55. "entry": {
  56. "@ant-design/icons-vue": [
  57. "./src/index.jsx"
  58. ]
  59. }
  60. },
  61. "description": "<h1 align=\"center\"> Ant Design Icons for Vue </h1>"
  62. }