-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
80 lines (80 loc) · 2.47 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
79
80
{
"name": "vue-popover",
"version": "1.7.0",
"description": "Reusable popover component for Vue",
"main": "dist/vue-popover.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/JFusco/vue-popover"
},
"engines": {
"node": ">=7.0.0"
},
"author": {
"name": "Joe Fusco",
"email": "[email protected]"
},
"scripts": {
"version": "npm run build && git add .",
"postversion": "git push origin master --tags",
"lint": "eslint --fix --color --debug --ignore-path .eslintignore ./src/component/js/*",
"test": "karma start --single-run --no-auto-watch",
"start": "cross-env NODE_ENV=development webpack-dev-server --hot --inline --open",
"start-docs": "webpack-dev-server --config ./webpack.config.example.babel.js --hot --inline --open",
"build-docs": "npm run test && webpack --config ./webpack.config.example.babel.js --progress --colors",
"build": "npm run lint && cross-env NODE_ENV=production webpack --display-chunks --display-modules --progress --colors && npm run build-docs"
},
"peerDependencies": {
"vue": "^2.2.4"
},
"devDependencies": {
"babel-core": "^6.0.0",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.4.1",
"babel-plugin-transform-runtime": "^6.22.0",
"babel-preset-es2015": "^6.0.0",
"babel-preset-stage-0": "^6.22.0",
"babel-runtime": "^6.23.0",
"clean-webpack-plugin": "^0.1.16",
"copy-webpack-plugin": "^4.0.1",
"cross-env": "^3.2.4",
"css-loader": "^0.27.3",
"eslint": "^3.18.0",
"eslint-loader": "^1.6.3",
"eslint-plugin-vue": "^2.0.1",
"extract-text-webpack-plugin": "^2.1.0",
"file-loader": "^0.10.0",
"isparta-loader": "^2.0.0",
"istanbul": "^0.4.5",
"istanbul-instrumenter-loader": "^2.0.0",
"jasmine-core": "^2.5.2",
"karma": "^1.5.0",
"karma-coverage": "^1.1.1",
"karma-jasmine": "^1.1.0",
"karma-phantomjs-launcher": "^1.0.4",
"karma-spec-reporter": "0.0.30",
"karma-webpack": "^2.0.3",
"node-sass": "^4.5.0",
"phantomjs-polyfill": "0.0.2",
"phantomjs-prebuilt": "^2.1.14",
"sass-loader": "^6.0.3",
"scss-loader": "0.0.1",
"sinon": "^2.0.0",
"vue": "^2.5.17",
"vue-eslint-parser": "^1.0.0",
"vue-loader": "^14.2.2",
"vue-template-compiler": "^2.5.17",
"webpack": "^2.2.0",
"webpack-dev-server": "^2.4.2"
},
"keywords": [
"vue",
"vuejs",
"popover",
"popoverbox",
"dropdown",
"vuejs2",
"vue-component"
]
}