forked from baianat/hooper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.99 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
{
"name": "hooper",
"version": "0.1.5",
"description": "A customizable accessible carousel slider optimized for Vue",
"module": "dist/hooper.esm.js",
"unpkg": "dist/hooper.js",
"main": "dist/hooper.js",
"scripts": {
"lint": "eslint ./src --fix",
"build": "NODE_ENV=production node scripts/build",
"demo": "npm run build && webpack-dev-server --hot --inline --config ./demo/webpack.config.js",
"deploy": "bash scripts/deploy.sh",
"dev": "node scripts/watcher",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs",
"docs:deploy": "bash scripts/docs-deploy.sh",
"test": "jest --config jest.config.json"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@vue/test-utils": "^1.0.0-beta.29",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^24.1.0",
"babel-loader": "^8.0.5",
"browser-sync": "^2.26.3",
"chalk": "^2.4.2",
"css-loader": "^2.1.0",
"filesize": "^4.0.0",
"friendly-errors-webpack-plugin": "^1.7.0",
"fs": "^0.0.1-security",
"gzip-size": "^5.0.0",
"html-webpack-plugin": "^3.2.0",
"jest": "24.1.0",
"mkdirp": "^0.5.1",
"path": "^0.12.7",
"progress-bar-webpack-plugin": "^1.12.1",
"rollup": "^1.1.2",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-css-only": "^1.0.0",
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-plugin-replace": "^2.1.0",
"rollup-plugin-vue": "^4.7.1",
"style-loader": "^0.23.1",
"uglify-js": "^3.4.9",
"util": "^0.11.1",
"vue": "^2.6.4",
"vue-jest": "^3.0.3",
"vue-loader": "^15.6.2",
"vue-template-compiler": "^2.6.4",
"vuepress": "^0.14.8",
"webpack": "^4.29.3",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.1.14"
},
"license": "MIT",
"keywords": [],
"maintainers": [
{
"name": "Abdelrahman3D",
"email": "[email protected]"
}
],
"optionalDependencies": {},
"dependencies": {
"vue-server-renderer": "^2.6.4"
}
}