-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
57 lines (57 loc) · 1.73 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
{
"name": "vue-context-menu-popup",
"description": "Simple context menu component for use in Vue.js applications.",
"keywords": [
"vue",
"component",
"context menu",
"menu",
"right click menu"
],
"homepage": "https://github.com/Johnathan/vue-context-menu-popup",
"license": "MIT",
"author": {
"name": "Johnathan Barrett",
"email": "johnathan.barrett@gmail.com",
"url": "https://github.com/johnathan"
},
"bugs": {
"url": "https://github.com/Johnathan/vue-context-menu-popup/issues",
"email": "johnathan.barrett@gmail.com"
},
"version": "1.0.4",
"private": false,
"scripts": {
"serve": "vue-cli-service serve ./example/main.js --open",
"build": "vue-cli-service build --name vue-context-menu-popup --entry ./src/index.js --target lib",
"lint": "vue-cli-service lint",
"test:unit": "vue-cli-service test:unit",
"prepublishOnly": "npm run lint && npm run build && npm run doc:build",
"doc:build": "npx vuedoc.md --section API --output ./README.md ./src/components/ContextMenu.vue"
},
"dependencies": {
"vue": "^2.5.17"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^3.0.1",
"@vue/cli-plugin-eslint": "^3.0.1",
"@vue/cli-plugin-unit-mocha": "^3.0.1",
"@vue/cli-service": "^3.0.1",
"@vue/eslint-config-airbnb": "^3.0.3",
"@vue/test-utils": "^1.0.0-beta.20",
"@vuedoc/md": "^1.3.3",
"chai": "^4.1.2",
"node-sass": "^4.9.0",
"sass-loader": "^7.0.1",
"vue-cli-plugin-component": "^1.7.1",
"vue-template-compiler": "^2.5.17"
},
"main": "dist/vue-context-menu-popup.umd.js",
"module": "dist/vue-context-menu-popup.common.min.js",
"files": [
"dist/*.css",
"dist/*.map",
"dist/*.js",
"src/*"
]
}