-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
78 lines (78 loc) · 2.61 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
{
"name": "focus-outside",
"version": "1.0.1",
"main": "dist/focus-outside.min.js",
"scripts": {
"clear": "rm -rf dist/ && rm -rf bundle.js",
"build": "npm run clear && node build/config.js && cp -r typings/ dist/typings",
"lint": "eslint --ext .js,.vue packages",
"test": "yarn lint",
"format": "prettier --config ./.prettierrc.yaml --write './**/*.{js,vue,css,scss}'",
"precommit": "pretty-quick --staged",
"dev": "npm run lint && npm run format && webpack-dev-server --inline --progress --config webpack.config.js"
},
"typings": "typings/focus-outside.d.ts",
"author": "xusheng.tao <https://github.com/txs1992>",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.8.7",
"babel-eslint": "^10.1.0",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^3.5.3",
"element-ui": "^2.13.2",
"eslint": "^4.11.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-standard": "^10.2.1",
"eslint-friendly-formatter": "^4.0.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"eslint-plugin-vue": "^6.2.2",
"file-loader": "^6.0.0",
"html-webpack-plugin": "^4.3.0",
"node-sass": "^4.14.1",
"prettier": "^2.0.5",
"pretty-quick": "^2.0.1",
"rollup": "^2.0.2",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^5.2.0",
"rollup-plugin-typescript": "^1.0.1",
"sass-loader": "^8.0.2",
"scss-loader": "0.0.1",
"ts-loader": "^7.0.5",
"typescript": "^3.9.5",
"uglify-es": "^3.1.10",
"url-loader": "^4.1.0",
"vue": "^2.6.11",
"vue-loader": "^15.9.2",
"vue-property-decorator": "^8.4.2",
"vue-router": "^3.1.6",
"vue-template-compiler": "^2.6.11",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/txs1992/focus-outside.git"
},
"keywords": [
"clickaway",
"click-away",
"clickOutside",
"click-outside",
"focusaway",
"focus-away",
"focusoutside",
"focus-outside"
],
"bugs": {
"url": "https://github.com/txs1992/focus-outside/issues"
},
"homepage": "https://github.com/txs1992/focus-outside#readme",
"description": "📦 A good clickOutside library, and it solves the problem that iframe cannot trigger clickOutside.. 一个很棒的 clickOutside 库,并且它解决了 iframe 无法触发 clickOutside 的问题。"
}