mirror of
https://github.com/tomasvarg/gallerymaker.git
synced 2026-03-01 08:28:48 +00:00
35 lines
651 B
JSON
35 lines
651 B
JSON
{
|
|
"name": "gallerymaker",
|
|
"version": "0.0.0",
|
|
"description": "A static html gallery maker",
|
|
"keywords": [
|
|
"gallery",
|
|
"images",
|
|
"static"
|
|
],
|
|
"main": "src/index.js",
|
|
"scripts": {
|
|
"serve": "node scripts/server.dev.js",
|
|
"test": "node test/index.js"
|
|
},
|
|
"eslintConfig": {
|
|
"env": {
|
|
"browser": true,
|
|
"node": true
|
|
},
|
|
"parserOptions": {
|
|
"ecmaVersion": 6
|
|
},
|
|
"extends": "eslint:recommended",
|
|
"rules": {
|
|
"no-console": 0,
|
|
"comma-dangle": 0
|
|
}
|
|
},
|
|
"author": "Tomas Varga <tomas.varga.cz@gmail.com>",
|
|
"license": "ISC",
|
|
"dependencies": {
|
|
"sharp": "^0.16.2"
|
|
}
|
|
}
|