awesome-docker/package.json

46 lines
1.9 KiB
Markdown
Raw Normal View History

2018-03-17 15:27:41 +00:00
{
"name": "awesome-docker-website",
"version": "1.0.0",
"description": "> A curated list of Docker resources and projects Inspired by [@sindresorhus](https://github.com/sindresorhus)' [awesome][sindresorhus] and improved by these **[amazing contributors](https://github.com/veggiemonk/awesome-docker/graphs/contributors)**.",
"main": "index.js",
"scripts": {
2018-04-22 12:39:58 +00:00
"build": "rimraf ./dist/ && node build.js",
2018-03-17 15:27:41 +00:00
"convert": "showdown makehtml -i README.md -o README.html --omitExtraWLInCodeBlocks --simplifiedAutoLink --excludeTrailingPunctuationFromURLs --literalMidWordUnderscores --strikethrough --tables --tablesHeaderId --ghCodeBlocks --tasklists --disableForced4SpacesIndentedSublists --simpleLineBreaks --requireSpaceBeforeHeadingText --ghCompatibleHeaderId --ghMentions --backslashEscapesHTMLTags --emoji --splitAdjacentBlockquotes",
2018-05-28 22:01:31 +00:00
"package": "parcel build index.html --public-url /awesome-docker",
"fetchdata": "node fetchRepos.js",
"table": "node convertRepos.js",
"update-repos": "node fetchRepos.js && node convertRepos.js"
2018-03-17 15:27:41 +00:00
},
"repository": {
"type": "git",
"url": "git+https://github.com/veggiemonk/awesome-docker.git"
},
"author": "Julien Bisconti <julien.bisconti at gmail dot com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/veggiemonk/awesome-docker/issues"
},
"homepage": "https://github.com/veggiemonk/awesome-docker#readme",
"dependencies": {
2018-04-22 11:51:56 +00:00
"camelcase": "^5.0.0",
2018-03-17 15:27:41 +00:00
"cheerio": "^1.0.0-rc.2",
2018-05-28 22:40:36 +00:00
"critical": "^1.3.2",
"dayjs": "^1.6.4",
"draftlog": "^1.0.12",
2018-05-13 19:16:49 +00:00
"node-fetch": "^2.1.2",
2018-05-28 22:40:36 +00:00
"parcel-bundler": "^1.8.1",
2018-03-18 11:59:03 +00:00
"rimraf": "^2.6.2",
2018-03-17 15:27:41 +00:00
"showdown": "^1.8.6"
},
"devDependencies": {
2018-05-28 22:40:36 +00:00
"babel-eslint": "^8.2.3",
"eslint": "^4.19.1",
2018-03-17 15:27:41 +00:00
"eslint-config-airbnb-base": "^12.1.0",
"eslint-config-prettier": "^2.9.0",
2018-05-28 22:40:36 +00:00
"eslint-plugin-import": "^2.12.0",
2018-03-17 15:27:41 +00:00
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-prettier": "^2.6.0",
2018-05-28 22:40:36 +00:00
"prettier": "^1.13.0"
2018-03-17 15:27:41 +00:00
}
}