-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
44 lines (44 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
43
44
{
"name": "@zkreations/imagehover",
"version": "1.1.0",
"description": "Open source pure CSS hover effect library for images",
"main": "main.min.css",
"scripts": {
"start": "npm-run-all --parallel watch:css",
"compile:css": "npm-run-all --sequential build:css minify:css",
"build:css": "sass --style expanded --no-source-map scss/:./",
"minify:css": "cleancss -O2 --with-rebase -o main.min.css main.css",
"watch:css": "nodemon --watch scss/ --ext scss --exec \"npm-run-all --sequential build:css minify:css\""
},
"files": [
"scss/**/*.scss",
"main.css",
"main.min.css"
],
"repository": {
"type": "git",
"url": "git+https://github.com/zkreations/imagehover.git"
},
"keywords": [
"css",
"images",
"hover",
"nojs"
],
"author": "zkreations <[email protected]> (https://zkreations.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/zkreations/imagehover/issues"
},
"homepage": "https://github.com/zkreations/imagehover#readme",
"devDependencies": {
"clean-css-cli": "^5.6.2",
"nodemon": "^2.0.22",
"npm-run-all": "^4.1.5",
"sass": "^1.60.0"
},
"directories": {
"test": "test"
},
"dependencies": {}
}