-
Notifications
You must be signed in to change notification settings - Fork 132
/
package.json
71 lines (71 loc) · 2.01 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
{
"name": "hooper",
"version": "0.3.4",
"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",
"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.5.5",
"@commitlint/cli": "^8.1.0",
"@vue/test-utils": "^1.0.0-beta.29",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.2",
"babel-jest": "^24.8.0",
"chalk": "^2.4.2",
"eslint": "^6.1.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-vue": "^5.2.3",
"filesize": "^4.1.2",
"friendly-errors-webpack-plugin": "^1.7.0",
"gzip-size": "^5.1.1",
"html-webpack-plugin": "^3.2.0",
"husky": "^3.0.3",
"jest": "24.8.0",
"lint-staged": "^9.2.1",
"mkdirp": "^0.5.1",
"prettier": "^1.18.2",
"pretty-quick": "^1.11.1",
"progress-bar-webpack-plugin": "^1.12.1",
"rollup": "^1.19.4",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.0.2",
"rollup-plugin-css-only": "^1.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-vue": "^5.0.1",
"uglify-js": "^3.6.0",
"vue": "^2.6.10",
"vue-jest": "^3.0.4",
"vue-server-renderer": "^2.6.10",
"vue-template-compiler": "^2.6.10",
"vuepress": "^1.0.3"
},
"license": "MIT",
"keywords": [],
"maintainers": [
{
"name": "Abdelrahman3D",
"email": "abdelrahman3d@gmail.com"
}
],
"lint-staged": {
"*.{js,vue}": [
"prettier --write",
"git add",
"jest --maxWorkers=1 --bail --findRelatedTests"
]
},
"dependencies": {}
}