-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.21 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
{
"name": "vue-flex-touch",
"version": "1.0.0",
"description": "vue-flex-touch both for long press touch on mobile and right click on pc",
"main": "dist/vue-flex-touch.common.js",
"module": "dist/vue-flex-touch.esm.js",
"scripts": {
"update": "auto-vers -t",
"build": "rollup -c rollup.config.js && uglifyjs dist/vue-flex-touch.js -o dist/vue-flex-touch.v$npm_package_version.min.js",
"e2e": "./node_modules/karma/bin/karma start"
},
"keywords": [
"touch",
"press touch",
"right click",
"vue",
"mobile",
"pc"
],
"author": "hua1995116 <qiufneghyf@gmail.com> (https://github.com/hua1995116)",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.4.0",
"@babel/preset-env": "^7.4.2",
"auto-vers": "^1.0.3",
"jasmine-core": "^3.4.0",
"karma": "^4.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-cli": "^2.0.0",
"karma-jasmine": "^2.0.1",
"karma-rollup-preprocessor": "^7.0.0",
"rollup": "^1.12.0",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^10.0.0",
"rollup-plugin-node-resolve": "^5.0.0",
"rollup-plugin-replace": "^2.2.0",
"uglify-js": "^3.5.12"
},
"dependencies": {
"vue": "^2.6.10"
}
}