forked from pulsardev/vue-tour
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.33 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": "vue-tour",
"version": "1.1.0",
"description": "Vue Tour is a lightweight, simple and customizable tour plugin for use with Vue.js. It provides a quick and easy way to guide your users through your application.",
"author": "Pulsar <[email protected]>",
"license": "MIT",
"main": "dist/vue-tour.common.js",
"module": "dist/vue-tour.umd.js",
"repository": {
"type": "git",
"url": "https://github.com/pulsardev/vue-tour.git"
},
"keywords": [
"vue",
"tour"
],
"homepage": "https://pulsardev.github.io/vue-tour",
"scripts": {
"serve": "vue-cli-service serve --open",
"build": "vue-cli-service build --target lib src/main.js",
"test:unit": "vue-cli-service test:unit",
"lint": "vue-cli-service lint"
},
"dependencies": {
"hash-sum": "^1.0.2",
"jump.js": "^1.0.2",
"popper.js": "^1.14.4",
"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-standard": "^3.0.1",
"@vue/test-utils": "^1.0.0-beta.24",
"chai": "^4.1.2",
"node-sass": "^4.9.3",
"sass-loader": "^6.0.7",
"vue-template-compiler": "^2.5.17"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
]
}