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

85 lines
1.9 KiB
JSON

10 years ago
{
"name": "thumbsup",
6 years ago
"version": "2.3.1",
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
},
"scripts": {
"lint": "standard && require-lint --ignore-extra lightgallery --ignore-extra video.js",
"unit": "istanbul cover node_modules/mocha/bin/_mocha",
"test": "npm run lint && npm run unit"
},
10 years ago
"dependencies": {
"JSONStream": "^1.3.2",
"async": "^2.5.0",
"better-sqlite3": "^4.1.0",
"chalk": "^2.4.1",
"command-exists": "^1.2.6",
"debug": "^3.1.0",
"event-stream": "^3.3.4",
"fs-extra": "^6.0.1",
"fs-readdir-recursive": "^1.0.0",
"handlebars": "~4.0.5",
"ini": "^1.3.4",
"insight": "^0.10.1",
"less": "^3.0.4",
"lightgallery": "^1.6.10",
"listr": "^0.14.1",
"listr-work-queue": "https://github.com/thumbsup/listr-work-queue.git",
"lodash": "^4.17.10",
"micromatch": "^3.1.10",
"moment": "^2.22.1",
"readdir-enhanced": "^2.2.1",
"through2": "^2.0.3",
"thumbsup-downsize": "^2.0.0",
"url-join": "^4.0.0",
"video.js": "^6.9.0",
"yargs": "^11.0.0",
"zen-observable": "^0.8.8"
},
"devDependencies": {
"gm": "^1.23.1",
"injectmd": "^1.0.0",
"istanbul": "^0.4.5",
"markdown-toc": "^1.1.0",
"mocha": "^5.1.1",
"mock-fs": "^4.5.0",
"require-lint": "^1.3.0",
"should": "^13.2.1",
"standard": "^11.0.1"
},
"standard": {
"ignore": [
"public/**"
],
"globals": [
"after",
"afterEach",
"before",
"beforeEach",
"describe",
"xdescribe",
"it",
"xit"
]
10 years ago
}
}