package.json 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. {
  2. "name": "province-city-china",
  3. "version": "8.0.0",
  4. "description": "An util to query china province, city and district data. 中华人民共和国国家标准 GB/T 2260 行政区划代码。",
  5. "main": "index.js",
  6. "scripts": {
  7. "start": "npm run get && npm run get:town && npm run create:data:json:csv && npm run compress",
  8. "get:town": "node script/getTown.js",
  9. "get": "npm run create:province:city && npm run create:level",
  10. "create:province:city": "node script/getProvinceCity.js",
  11. "create:level": "node script/createLevelData.js",
  12. "create:data:json:csv": "node script/createDataCSVAndJSON.js",
  13. "compress": "node script/compress.js"
  14. },
  15. "keywords": [
  16. "province",
  17. "china",
  18. "cn",
  19. "city",
  20. "GB",
  21. "GB2260",
  22. "中国",
  23. "中华人民共和国",
  24. "行政区划",
  25. "省市",
  26. "省市区",
  27. "联动",
  28. "省份",
  29. "城市",
  30. "县市",
  31. "区县",
  32. "乡镇",
  33. "街道",
  34. "村委会",
  35. "居委会",
  36. "省级",
  37. "地级",
  38. "县级",
  39. "乡级",
  40. "村级"
  41. ],
  42. "files": [
  43. "dist",
  44. "data.js",
  45. "index.d.ts",
  46. "index.js"
  47. ],
  48. "repository": {
  49. "type": "git",
  50. "url": "https://github.com/uiwjs/province-city-china.git"
  51. },
  52. "author": "",
  53. "license": "MIT",
  54. "dependencies": {
  55. "@province-city-china/types": "7.1.3"
  56. },
  57. "devDependencies": {
  58. "cheerio": "^1.0.0-rc.3",
  59. "csvtojson": "^2.0.10",
  60. "fs-extra": "^9.0.1",
  61. "superagent": "^5.1.0",
  62. "superagent-charset": "^1.2.0"
  63. }
  64. }