-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
47 lines (47 loc) · 1.19 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
{
"name": "jquery-cascader",
"description": "jQuery.Cascader multiple select component.",
"version": "1.0.1",
"main": "src/index.js",
"files": [
"src/*.js",
"dist/*.js"
],
"module": "dist/jquery.cascader.esm.js",
"browser": "dist/jquery.cascader.umd.js",
"browser-min": "dist/jquery.cascader.umd.min.js",
"scripts": {
"start": "rollup -c -w",
"build": "rollup -c",
"dev": "rollup -c -w",
"test": "node test/test.js",
"pretest": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vuchan/jquery-cascader.git"
},
"keywords": [
"cascader",
"jquery-cascader",
"cascader-multiselect"
],
"author": "vuchan (givingwu@gmail.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/vuchan/jquery-cascader/issues"
},
"homepage": "https://github.com/vuchan/jquery-cascader#readme",
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"rollup": "^1.6.0",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^9.2.1",
"rollup-plugin-node-resolve": "^4.0.1",
"rollup-plugin-terser": "^4.0.4"
},
"dependencies": {
"jquery": "^3.3.1"
}
}