-
Notifications
You must be signed in to change notification settings - Fork 112
/
Copy pathpackage.json
84 lines (84 loc) · 2.49 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
81
82
83
84
{
"name": "vuescroll",
"version": "5.1.1",
"author": {
"name": "Yves Wang"
},
"description": "A powerful, customizable, multi-mode scrollbar plugin based on Vue.js",
"scripts": {
"build": "cross-env BABEL_ENV=build node scripts/build.js",
"debug": "cross-env BABEL_ENV=build VS_ENV=DEBUG node scripts/debug-build.js",
"test": "npm run test:cover",
"lint": "eslint --fix src scripts test",
"test:cover": "karma start test/unit/karma.conf.js",
"debug-test": "karma start test/unit/karma.conf.js --no-single-run",
"report-coverage": "codecov",
"gen-changelog": "conventional-changelog -p angular -i CHANGELOG.md -s"
},
"license": "MIT",
"homepage": "https://github.com/YvesCoding/vuescroll#readme",
"keywords": [
"vuescroll",
"scrollbar",
"vuescrollbar",
"vue"
],
"bugs": {
"url": "https://github.com/YvesCoding/vuescroll/issues"
},
"peerDependencies": {
"vue": "^3.0.0"
},
"typings": "types/index.d.ts",
"files": [
"src",
"dist/*.js",
"dist/*.css",
"types/*.d.ts"
],
"deprecated": false,
"jsdelivr": "./dist/vuescroll.js",
"main": "./dist/vuescroll.js",
"unpkg": "./dist/vuescroll.js",
"module": "./dist/vuescroll-esm.js",
"repository": {
"type": "git",
"url": "git+https://github.com/YvesCoding/vuescroll.git"
},
"devDependencies": {
"@babel/core": "^7.12.16",
"@babel/eslint-parser": "^7.12.16",
"@babel/plugin-syntax-jsx": "^7.12.13",
"@babel/plugin-transform-spread": "^7.12.13",
"@babel/preset-env": "^7.12.16",
"@rollup/plugin-alias": "^3.1.2",
"@rollup/plugin-babel": "^5.2.3",
"@rollup/plugin-commonjs": "^17.1.0",
"@rollup/plugin-node-resolve": "^11.1.1",
"@rollup/plugin-replace": "^2.3.4",
"@vue/babel-helper-vue-jsx-merge-props": "^1.2.1",
"@vue/babel-plugin-jsx": "^1.1.1",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.3",
"babel-plugin-istanbul": "^4.1.5",
"babel-preset-es2015-rollup": "^3.0.0",
"codecov": "^3.0.0",
"cross-env": "^5.2.0",
"css-loader": "^0.28.11",
"eslint": "^4.13.1",
"husky": "^2.3.0",
"istanbul": "^0.4.5",
"jasmine-core": "^2.9.1",
"karma": "^4.4.1",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.1",
"karma-jasmine": "^1.1.1",
"karma-phantomjs-launcher": "^1.0.4",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^2.0.9",
"rollup": "2.38.5",
"rollup-plugin-uglify": "^6.0.4",
"vue": "^3.0.0",
"webpack": "^4.0.0"
}
}