2
0
mirror of https://github.com/thumbsup/thumbsup synced 2024-11-11 07:10:26 +00:00
thumbsup/package.json

94 lines
2.0 KiB
JSON
Raw Normal View History

2014-04-17 11:26:18 +00:00
{
2014-04-18 11:14:13 +00:00
"name": "thumbsup",
2023-03-21 20:31:47 +00:00
"version": "2.17.1",
2014-04-17 11:26:18 +00:00
"description": "Photo / video gallery generator",
"author": "Romain Prieto",
2014-05-19 12:25:09 +00:00
"license": "MIT",
2014-04-17 11:26:18 +00:00
"keywords": [
2014-04-18 10:32:25 +00:00
"photo",
"video",
"gallery",
"thumbnails",
"portfolio",
"website",
"s3",
"generator"
2014-04-17 11:26:18 +00:00
],
2014-04-22 12:34:26 +00:00
"repository": {
"type": "git",
2017-05-29 07:34:33 +00:00
"url": "https://github.com/thumbsup/thumbsup.git"
2014-04-22 12:34:26 +00:00
},
"main": "bin/thumbsup.js",
2014-04-17 11:26:18 +00:00
"bin": {
"thumbsup": "./bin/thumbsup.js"
2014-04-17 11:26:18 +00:00
},
"files": [
"src",
"bin"
],
"scripts": {
"lint": "standard && require-lint",
"unit": "c8 mocha",
"test": "npm run lint && npm run unit"
},
2014-04-17 11:26:18 +00:00
"dependencies": {
"@thumbsup/theme-cards": "^1.3.0",
"@thumbsup/theme-classic": "^1.2.0",
"@thumbsup/theme-flow": "^1.3.0",
"@thumbsup/theme-mosaic": "^1.2.0",
2023-11-26 23:50:55 +00:00
"async": "^3.2.5",
"better-sqlite3": "^9.1.1",
2021-04-17 22:25:12 +00:00
"boxen": "^5.0.1",
"chalk": "^4.1.0",
2020-05-08 22:49:06 +00:00
"command-exists": "^1.2.9",
2022-09-05 21:37:59 +00:00
"debug": "^4.3.4",
"event-stream": "^4.0.1",
2023-11-26 23:50:55 +00:00
"fs-extra": "^11.1.1",
"fs-readdir-recursive": "^1.1.0",
"handlebars": "^4.7.8",
"ini": "^4.1.1",
2022-09-05 21:37:59 +00:00
"JSONStream": "^1.3.5",
2023-11-26 23:50:55 +00:00
"less": "^4.2.0",
"listr": "^0.14.3",
2021-04-17 22:25:12 +00:00
"lodash": "^4.17.21",
2022-09-05 21:37:59 +00:00
"micromatch": "^4.0.5",
"moment": "^2.29.4",
"readdir-enhanced": "^6.0.4",
"resolve-pkg": "^2.0.0",
2023-11-26 23:50:55 +00:00
"slugify": "^1.6.6",
2020-07-15 22:37:03 +00:00
"through2": "^4.0.2",
"thumbsup-downsize": "^2.5.1",
2023-11-26 23:50:55 +00:00
"yargs": "^17.7.2",
2023-03-19 23:18:15 +00:00
"zen-observable": "^0.10.0"
},
"devDependencies": {
2023-11-26 23:50:55 +00:00
"c8": "^8.0.1",
"glob": "^10.3.10",
2023-03-19 23:18:15 +00:00
"gm": "^1.25.0",
"injectmd": "^1.0.0",
2023-11-26 23:50:55 +00:00
"markdown-toc": "^1.2.0",
2023-03-19 23:18:15 +00:00
"mocha": "^10.2.0",
"mock-fs": "^5.2.0",
"mock-spawn": "^0.2.6",
2022-09-05 21:37:59 +00:00
"require-lint": "^2.0.3",
"should": "^13.2.3",
2023-11-26 23:50:55 +00:00
"sinon": "^17.0.1",
2023-11-26 23:37:00 +00:00
"standard": "^17.1.0",
2020-05-08 22:49:06 +00:00
"stream-mock": "^2.0.5",
"tmp": "^0.2.1",
2023-11-26 23:50:55 +00:00
"yaml": "^2.3.4"
},
"standard": {
"env": [
"mocha"
],
"ignore": [
"themes/**/public"
],
"globals": [
"itLinux",
"itWindows"
]
2014-04-17 11:26:18 +00:00
}
}