forked from AviKKi/hover-preview
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 860 Bytes
/
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
{
"name": "hover-preview",
"version": "0.1.0",
"description": "Vanilla Javascript library to show video preview on hover",
"main": "src/hover-preview.js",
"author": "AviKKi",
"license": "MIT",
"scripts": {
"build": "gulp build",
"lint:fix": "eslint --fix --ext .js src"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.12.1",
"babel": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"eslint": "^7.11.0",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-rename": "^2.0.0",
"gulp-uglify": "^3.0.2",
"husky": "^4.3.0",
"lint-staged": "^10.4.2",
"readable-stream": "^3.6.0"
},
"dependencies": {},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"./src/*.{js,ts}": [
"eslint src/*.js --fix-dry-run"
]
}
}