-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.79 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
{
"name": "vue-scroll-span",
"version": "0.3.0",
"main": "dist/VueScrollSpan.umd.js",
"module": "dist/VueScrollSpan.common.js",
"unpkg": "dist/VueScrollSpan.umd.min.js",
"browser": {
"./sfc": "src/scroll-span.vue"
},
"scripts": {
"serve": "vue serve --open examples/main.js",
"prepublishOnly": "npm run build",
"build": "vue-cli-service build --target lib --name VueScrollSpan ./src/wrapper.js",
"lint": "run-s lint:all:*",
"lint:all:eslint": "npm run lint:eslint -- --fix --ext .js,.vue .",
"lint:all:markdownlint": "npm run lint:markdownlint -- --fix \"docs/*.md\" \"*.md\"",
"lint:dry-run": "run-s lint:dry-run:*",
"lint:dry-run:eslint": "npm run lint:eslint -- --ext .js,.vue .",
"lint:dry-run:markdownlint": "npm run lint:markdownlint -- \"docs/*.md\" \"*.md\"",
"lint:eslint": "eslint",
"lint:markdownlint": "markdownlint"
},
"dependencies": {},
"devDependencies": {
"@vue/cli-plugin-babel": "^3.5.0",
"@vue/cli-plugin-eslint": "^3.5.0",
"@vue/cli-service": "^3.5.0",
"@vue/eslint-config-airbnb": "^4.0.0",
"babel-eslint": "^10.0.1",
"babel-preset-airbnb": "^3.2.1",
"eslint": "^5.8.0",
"eslint-plugin-vue": "^5.0.0",
"markdownlint-cli": "^0.14.1",
"node-sass": "^4.9.0",
"npm-run-all": "^4.1.5",
"reset-css": "4.x",
"sass-loader": "^7.1.0",
"vue-cli-plugin-webpack-bundle-analyzer": "^1.2.0",
"vue-template-compiler": "^2.5.21"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stijlbreuk/vue-scroll-span.git"
},
"keywords": [
"vue",
"scroll",
"span"
],
"author": "Stijlbreuk",
"license": "MIT",
"bugs": {
"url": "https://github.com/stijlbreuk/vue-scroll-span/issues"
},
"homepage": "https://github.com/stijlbreuk/vue-scroll-span#readme"
}