-
Notifications
You must be signed in to change notification settings - Fork 464
/
package.json
85 lines (85 loc) · 1.97 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "distpicker",
"description": "A simple jQuery plugin for picking provinces, cities and districts of China.",
"version": "2.0.8",
"main": "dist/distpicker.common.js",
"module": "dist/distpicker.esm.js",
"browser": "dist/distpicker.js",
"files": [
"src",
"dist"
],
"scripts": {
"build": "rollup -c",
"clean": "del-cli dist",
"lint": "eslint src *.js --fix",
"prepare": "husky install",
"release": "npm run clean && npm run lint && npm run build",
"start": "rollup -c -m -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fengyuanchen/distpicker.git"
},
"keywords": [
"中国",
"省份",
"城市",
"行政区",
"省市区",
"三级联动",
"地址选择器",
"China",
"Chinese",
"province",
"provinces",
"city",
"cities",
"district",
"districts",
"pick",
"picker",
"picking",
"jquery",
"plugin",
"jquery-plugin",
"html",
"css",
"javascript",
"front-end",
"web",
"development"
],
"author": {
"name": "Chen Fengyuan",
"url": "https://chenfengyuan.com/"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/fengyuanchen/distpicker/issues"
},
"homepage": "https://fengyuanchen.github.io/distpicker",
"devDependencies": {
"@babel/core": "^7.20.7",
"@babel/preset-env": "^7.20.2",
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^24.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-terser": "^0.2.1",
"change-case": "^4.1.2",
"create-banner": "^2.0.0",
"del-cli": "^5.0.0",
"eslint": "^8.31.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"husky": "^8.0.2",
"jquery": "^3.6.3",
"lint-staged": "^13.1.0",
"rollup": "^3.9.0"
},
"peerDependencies": {
"jquery": ">=1.9.1"
}
}