forked from uiwjs/province-city-china
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 944 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{
"name": "province-city-china",
"version": "4.0.3",
"description": "An util to query china province, city and district data.",
"main": "index.js",
"scripts": {
"start": "npm run get && npm run get:town && npm run create:data:json:csv",
"get:town": "node script/getTown.js",
"get": "npm run create:province:city && npm run create:level",
"create:province:city": "node script/getProvinceCity.js",
"create:level": "node script/createLevelData.js",
"create:data:json:csv": "node script/createDataCSVAndJSON.js"
},
"keywords": [
"province",
"china"
],
"files": [
"dist",
"data.js",
"index.js"
],
"repository": {
"type": "git",
"url": "https://github.com/uiwjs/province-city-china.git"
},
"author": "",
"license": "MIT",
"devDependencies": {
"cheerio": "^1.0.0-rc.3",
"fs-extra": "^7.0.1",
"superagent": "^5.1.0",
"superagent-charset": "^1.2.0"
}
}