forked from fengyuanchen/distpicker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 1.72 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
{
"name": "distpicker",
"description": "A simple jQuery plugin for picking provinces, cities and districts of China.",
"version": "2.0.3",
"main": "dist/distpicker.common.js",
"module": "dist/distpicker.esm.js",
"unpkg": "dist/distpicker.js",
"repository": "fengyuanchen/distpicker",
"homepage": "https://fengyuanchen.github.io/distpicker",
"license": "MIT",
"author": {
"name": "Chen Fengyuan",
"url": "http://chenfengyuan.com"
},
"files": [
"src",
"dist"
],
"keywords": [
"中国",
"省份",
"城市",
"行政区",
"省市区",
"三级联动",
"地址选择器",
"China",
"Chinese",
"province",
"provinces",
"city",
"cities",
"district",
"districts",
"pick",
"picker",
"picking",
"jquery",
"plugin",
"jquery-plugin",
"html",
"css",
"javascript",
"front-end",
"web",
"development"
],
"scripts": {
"build": "rollup -c",
"clear": "del-cli dist",
"compress": "uglifyjs dist/distpicker.js -o dist/distpicker.min.js -c -m --comments /^!/",
"lint": "eslint src --fix",
"release": "npm run clear && npm run lint && npm run build && npm run compress",
"start": "rollup -c -m -w"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-preset-env": "^1.6.1",
"del-cli": "^1.1.0",
"eslint": "^4.18.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.9.0",
"jquery": "^3.3.1",
"rollup": "^0.56.3",
"rollup-plugin-babel": "^3.0.3",
"rollup-plugin-commonjs": "^8.3.0",
"rollup-plugin-node-resolve": "^3.0.3",
"rollup-watch": "^4.3.1",
"uglify-js": "^3.3.12"
},
"peerDependencies": {
"jquery": ">= 1.9.1"
}
}