-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
40 lines (40 loc) · 1.14 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
{
"name": "minimal-lightbox",
"version": "1.0.7",
"description": "A minimal Medium.com-style lightbox for enlarging media using css transforms, scaling images from their position on a page",
"main": "dist/minimal-lightbox.js",
"scripts": {
"build": "npm run build:js && npm run build:css",
"build:js": "babel src --out-dir dist",
"build:css": "postcss --use autoprefixer ./src/styles.css -o ./dist/minimal-lightbox.css"
},
"repository": {
"type": "git",
"url": "https://github.com/mshwery/minimal-lightbox"
},
"keywords": [
"lightbox",
"medium",
"fancybox",
"media",
"image",
"transform",
"scale",
"enlarge",
"photo"
],
"author": "Matt Shwery <[email protected]> (http://mattshwery.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/mshwery/minimal-lightbox/issues"
},
"homepage": "https://github.com/mshwery/minimal-lightbox",
"devDependencies": {
"autoprefixer": "^6.0.2",
"babel-cli": "^6.14.0",
"babel-plugin-transform-es2015-modules-umd": "^6.12.0",
"babel-preset-es2015": "^6.14.0",
"postcss-cli": "^2.1.0"
},
"dependencies": {}
}