You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
thumbsup/package.json

99 lines
2.1 KiB
JSON

10 years ago
{
"name": "thumbsup",
4 years ago
"version": "2.14.0",
10 years ago
"description": "Photo / video gallery generator",
"author": "Romain Prieto",
"license": "MIT",
10 years ago
"keywords": [
"photo",
"video",
"gallery",
"thumbnails",
"portfolio",
"website",
"s3",
"generator"
10 years ago
],
"repository": {
"type": "git",
"url": "https://github.com/thumbsup/thumbsup.git"
},
"main": "bin/thumbsup.js",
10 years ago
"bin": {
"thumbsup": "./bin/thumbsup.js"
10 years ago
},
"files": [
"src",
"bin"
],
"scripts": {
"lint": "standard && require-lint",
"unit": "istanbul cover node_modules/mocha/bin/_mocha",
"test": "npm run lint && npm run unit"
},
10 years ago
"dependencies": {
"@thumbsup/theme-cards": "^1.2.0",
"@thumbsup/theme-classic": "^1.1.0",
"@thumbsup/theme-flow": "^1.2.1",
"@thumbsup/theme-mosaic": "^1.1.0",
"JSONStream": "^1.3.5",
"async": "^3.2.0",
"better-sqlite3": "^7.1.0",
"boxen": "^4.2.0",
"chalk": "^4.1.0",
"command-exists": "^1.2.9",
"debug": "^4.1.1",
"event-stream": "^4.0.1",
"fs-extra": "^9.0.1",
"fs-readdir-recursive": "^1.0.0",
"handlebars": "^4.7.6",
"ini": "^1.3.4",
"insight": "^0.10.3",
"less": "^3.12.0",
"listr": "^0.14.3",
"lodash": "^4.17.19",
"micromatch": "^4.0.2",
"moment": "^2.27.0",
"readdir-enhanced": "^6.0.3",
"resolve-pkg": "^2.0.0",
"slugify": "^1.4.4",
"through2": "^4.0.2",
"thumbsup-downsize": "^2.4.2",
"url-join": "^4.0.1",
"yargs": "^15.4.1",
"zen-observable": "^0.8.15"
},
"devDependencies": {
"glob": "^7.1.6",
"gm": "^1.23.1",
"injectmd": "^1.0.0",
"istanbul": "^0.4.5",
"markdown-toc": "^1.1.0",
"mocha": "^8.0.1",
"mock-fs": "^4.12.0",
"mock-spawn": "^0.2.6",
"require-all": "^3.0.0",
"require-lint": "^2.0.0",
"should": "^13.2.3",
"sinon": "^9.0.2",
"standard": "^12.0.1",
"stream-mock": "^2.0.5",
"tmp": "^0.2.1"
},
"standard": {
"ignore": [
"themes/**/public"
],
"globals": [
"after",
"afterEach",
"before",
"beforeEach",
"describe",
"xdescribe",
"it",
"xit"
]
10 years ago
}
}