forked from ldwonday/zh-address-parse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·57 lines (57 loc) · 1.69 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
{
"name": "@yzfe/zh-address-parse",
"version": "1.3.18",
"description": "chinese address parse",
"author": "wonday",
"license": "MIT",
"homepage": "https://github.com/ldwonday/zh-address-parse",
"main": "./index.js",
"typings": "./index.d.ts",
"files": [
"app",
"dist",
"index.js",
"index.d.ts"
],
"scripts": {
"dev": "cross-env NODE_ENV=dev webpack-dev-server --progress --mode development --config webpack.config.dev.js",
"build": "cross-env NODE_ENV=production webpack -p --progress --mode production --config webpack.config.build.js",
"build-lib": "cross-env NODE_ENV=production webpack -p --progress --mode production --config webpack.config.build.lib.js",
"push-release": "sh ./scripts/release.sh",
"push-dev": "sh ./scripts/dev.sh",
"fetch-data": "babel-node app/lib/getMcaGovData.js"
},
"repository": {
"type": "git",
"url": "https://github.com/ldwonday/zh-address-parse.git"
},
"dependencies": {
"jquery": "^3.4.1",
"lodash": "^4.17.21"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.4",
"@babel/node": "^7.8.4",
"@babel/preset-env": "^7.6.0",
"babel-loader": "^8.0.6",
"cheerio": "^1.0.0-rc.12",
"clean-webpack-plugin": "^3.0.0",
"cross-env": "^7.0.3",
"css-loader": "^3.2.0",
"file-loader": "^4.2.0",
"html-webpack-plugin": "^3.2.0",
"sass": "^1.30.0",
"sass-loader": "^8.0.0",
"style-loader": "^1.0.0",
"url-loader": "^2.1.0",
"webpack": "^4.40.2",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^5.7.3"
}
}