package.json 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. {
  2. "name": "@ant-design/icons-svg",
  3. "version": "4.2.1",
  4. "sideEffects": false,
  5. "description": "Abstract nodes for ant design icons.",
  6. "contributors": [
  7. "HeskeyBaozi <hezhiyu233@foxmail.com>"
  8. ],
  9. "homepage": "https://github.com/ant-design/ant-design-icons/",
  10. "license": "MIT",
  11. "main": "lib/index.js",
  12. "module": "es/index.js",
  13. "files": [
  14. "lib",
  15. "es",
  16. "inline-svg",
  17. "inline-namespaced-svg"
  18. ],
  19. "repository": {
  20. "type": "git",
  21. "url": "git+https://github.com/ant-design/ant-design-icons.git"
  22. },
  23. "scripts": {
  24. "g": "npm run generate",
  25. "generate": "cross-env NODE_ENV=production gulp --require ts-node/register/transpile-only",
  26. "type-check": "tsc --noEmit",
  27. "build:es": "tsc --project tsconfig.build.json --module esnext --outDir es",
  28. "build:lib": "tsc --project tsconfig.build.json --module commonjs --outDir lib",
  29. "build": "cross-env NODE_ENV=production && npm run build:es && npm run build:lib",
  30. "test": "cross-env NODE_ENV=test && npm run test:unit",
  31. "test:unit": "jest",
  32. "prepublishOnly": "npm run test && npm run g && npm run build && npm run type-check && npm run digest",
  33. "digest": "node scripts/digest.js"
  34. },
  35. "bugs": {
  36. "url": "https://github.com/ant-design/ant-design-icons/issues"
  37. },
  38. "devDependencies": {
  39. "@babel/core": "^7.8.6",
  40. "@babel/preset-env": "^7.8.6",
  41. "@babel/preset-typescript": "^7.8.3",
  42. "@rgrove/parse-xml": "^2.0.2",
  43. "@types/gulp": "^4.0.6",
  44. "@types/gulp-concat": "^0.0.32",
  45. "@types/gulp-rename": "^0.0.33",
  46. "@types/jest": "^25.1.3",
  47. "@types/lodash.camelcase": "^4.3.6",
  48. "@types/lodash.template": "^4.4.6",
  49. "@types/lodash.upperfirst": "^4.3.6",
  50. "@types/node": "^13.9.3",
  51. "@types/ramda": "^0.26.43",
  52. "@types/rgrove__parse-xml": "^1.1.0",
  53. "@types/svgo": "^1.3.1",
  54. "@types/through2": "^2.0.34",
  55. "@typescript-eslint/eslint-plugin": "^2.21.0",
  56. "@typescript-eslint/parser": "^2.21.0",
  57. "babel-jest": "^25.1.0",
  58. "cross-env": "^7.0.0",
  59. "del": "^5.1.0",
  60. "eslint": "^7.16.0",
  61. "globby": "^11.0.0",
  62. "gulp": "^4.0.2",
  63. "gulp-clone": "^2.0.1",
  64. "gulp-concat": "^2.6.1",
  65. "gulp-header": "^2.0.9",
  66. "gulp-rename": "^2.0.0",
  67. "jest": "^25.1.0",
  68. "lodash.camelcase": "^4.3.0",
  69. "lodash.template": "^4.5.0",
  70. "lodash.upperfirst": "^4.3.1",
  71. "ramda": "^0.27.0",
  72. "svgo": "^1.3.2",
  73. "through2": "^3.0.1",
  74. "ts-node": "^8.6.2",
  75. "typescript": "^3.8.3",
  76. "vinyl": "^2.2.0"
  77. },
  78. "publishConfig": {
  79. "access": "public",
  80. "registry": "https://registry.npmjs.org"
  81. }
  82. }