-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.95 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
{
"name": "vue-directive-clickout",
"version": "0.0.1-alpha",
"author": "github.com/linusborg",
"private": true,
"description": "A directive to catch clicks outside of an element, compatible with Vue 2.0 only",
"keywords": [
"directive",
"Vue.js"
],
"license": "MIT",
"main": "dist/vue-directive-clickout.cjs.js",
"files": [
"dist"
],
"homepage": "https://github.com/linusborg/vue-directive-clickout",
"bugs": "https://github.com/linusborg/vue-directive-clickout",
"repository": {
"type": "git",
"url": "https://github.com/linusborg/vue-directive-clickout.git"
},
"scripts": {
"clean": "rm -rf dist .tmp",
"dev": "webpack-dev-server --inline --hot --no-info --config scripts/webpack.config.example.js",
"build": "run-p build:cjs build:dev build:prod",
"build:cjs": "rollup -c scripts/rollup.config.js --environment BUILD:cjs",
"build:dev": "rollup -c scripts/rollup.config.js --environment BUILD:dev",
"build:prod": "rollup -c scripts/rollup.config.js --environment BUILD:prod | uglifyjs -mc warnings=false --comments -o dist/vue-directive-clickout.min.js",
"build:example": "webpack --config scripts/webpack.config.example.js",
"flow": "flow check",
"lint": "eslint --fix \"@(src|scripts)/**/*.js\"",
"release": "run-s lint flow test clean build"
},
"peerDependencies": {
"vue": ">= 2.0.0"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.6.1",
"cross-env": "^3.0.0",
"css-loader": "^0.28.11",
"eslint": "^3.0.0",
"eslint-plugin-html": "^1.5.3",
"glob": "^7.0.3",
"rollup": "^0.36.0",
"rollup-plugin-babel": "^2.6.1",
"rollup-plugin-replace": "^1.1.1",
"rollup-plugin-vue": "^2.2.3",
"uglifyjs": "^2.4.10",
"vue": "^2.5.16",
"vue-loader": "^14.2.2",
"webpack": "^4.5.0",
"webpack-cli": "^2.0.14",
"webpack-dashboard": "^0.1.8",
"webpack-dev-server": "^3.1.3"
}
}