-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 946 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 946 Bytes
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
{
"name": "dimbox",
"version": "1.3.1",
"description": "Lightweight, accessible and dependency free JavaScript library for displaying images, videos and other content on a web page.",
"main": "src/js/dimbox.js",
"scripts": {
"sass": "sass src/scss/dimbox.scss dist/css/dimbox.min.css --style compressed",
"uglify": "uglifyjs src/js/dimbox.js --output dist/js/dimbox.min.js",
"build": "npm-run-all --parallel sass uglify",
"watch": "watch 'npm run build' src --interval 1",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"vanilla",
"dimbox",
"lightbox",
"image",
"gallery",
"overlay"
],
"author": "Hape Haavikko",
"repository": {
"type": "git",
"url": "https://github.com/hphaavikko/dimbox.git"
},
"license": "ISC",
"devDependencies": {
"npm-run-all": "^4.1.5",
"sass": "^1.57.1",
"uglify-js": "^3.17.4",
"watch": "^1.0.2"
}
}