forked from tonyc726/china-administrative-division
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 2.05 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "china-administrative-division",
"version": "0.0.0-development",
"description": "Administrative division codes and infos of the People's Republic of China",
"repository": "https://github.com/tonyc726/china-administrative-division.git",
"author": "tonyc726 <[email protected]>",
"license": "MIT",
"keywords": [
"china",
"Administrative division codes",
"GB2260",
"GB2260—1999",
"中国",
"行政区划",
"行政区划代码"
],
"engines": {
"node": ">=8"
},
"scripts": {
"gb2260:clean": "rimraf -g '{,!(node_modules)/**/}data/GB2260/*.json'",
"gb2260:lint": "eslint ./crawler/gb2260.js",
"gb2260:crawler": "node ./crawler/gb2260.js",
"stats-gov:clean": "rimraf -g '{,!(node_modules)/**/}data/stats.gov.cn/*.json'",
"stats-gov:lint": "eslint ./crawler/stats.gov.cn.js",
"stats-gov:crawler": "node ./crawler/stats.gov.cn.js",
"clean": "npm-run-all *:clean",
"lint": "npm-run-all *:lint",
"precrawler": "npm run lint && npm run clean",
"crawler": "npm-run-all *:crawler",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^7.2.3",
"babel-jest": "^20.0.3",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.0",
"babel-preset-stage-0": "^6.24.1",
"babel-runtime": "^6.26.0",
"cross-env": "^5.0.5",
"cz-conventional-changelog": "^2.0.0",
"eslint": "^4.5.0",
"eslint-config-airbnb-base": "^11.3.2",
"eslint-friendly-formatter": "^3.0.0",
"eslint-plugin-import": "^2.7.0",
"jest": "^20.0.4",
"npm-run-all": "^4.1.1",
"rimraf": "^2.6.1",
"semantic-release": "^7.0.2"
},
"dependencies": {
"cheerio": "^1.0.0-rc.2",
"iconv-lite": "^0.4.19",
"is-absolute-url": "^2.1.0",
"lodash": "^4.17.10",
"request-promise": "^4.2.1",
"urlencode": "^1.1.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}