forked from fengyuanchen/distpicker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.58 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
{
"name": "distpicker",
"description": "A simple jQuery plugin for picking provinces, cities and districts of China.",
"version": "2.0.0",
"main": "dist/distpicker.common.js",
"module": "dist/distpicker.esm.js",
"browser": "dist/distpicker.js",
"license": "MIT",
"repository": "fengyuanchen/distpicker",
"homepage": "https://fengyuanchen.github.io/distpicker",
"author": {
"name": "Fengyuan Chen",
"url": "http://chenfengyuan.com"
},
"keywords": [
"中国",
"省份",
"城市",
"行政区",
"省市区",
"三级联动",
"地址选择器",
"China",
"Chinese",
"province",
"provinces",
"city",
"cities",
"district",
"districts",
"pick",
"picker",
"picking",
"jquery",
"plugin",
"html",
"css",
"javascript",
"front-end",
"web",
"development"
],
"scripts": {
"build": "rollup -c",
"compress": "uglifyjs dist/distpicker.js -o dist/distpicker.min.js -c -m --comments /^!/",
"lint": "eslint src",
"postbuild": "npm run compress",
"prebuild": "npm run lint",
"start": "rollup -c -w -m"
},
"dependencies": {
"jquery": ">= 1.9.1"
},
"devDependencies": {
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-es2015": "^6.22.0",
"eslint": "^3.17.0",
"eslint-config-airbnb-base": "^10.0.1",
"eslint-plugin-import": "^2.2.0",
"rollup": "^0.36.4",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-commonjs": "^5.0.5",
"rollup-plugin-node-resolve": "^2.0.0",
"rollup-watch": "^2.5.0",
"uglify-js": "^2.8.5"
}
}