awesome-docker/package.json

43 lines
1.3 KiB
Markdown
Raw Normal View History

2018-03-17 15:27:41 +00:00
{
"name": "awesome-docker-website",
"version": "1.0.0",
2018-06-08 17:38:46 +00:00
"description": "A curated list of Docker resources and projects Inspired by @sindresorhus and improved by amazing contributors",
2018-07-21 13:12:59 +00:00
"main": "build.js",
2018-03-17 15:27:41 +00:00
"scripts": {
2020-04-13 14:15:18 +00:00
"build": "rimraf ./dist/ && node build.js",
"test-pr": "node tests/pull_request.js",
2020-11-11 07:46:43 +00:00
"test": "node tests/test_all.js"
2018-03-17 15:27:41 +00:00
},
"repository": {
"type": "git",
"url": "git+https://github.com/veggiemonk/awesome-docker.git"
},
2019-09-11 12:09:34 +00:00
"author": "Julien Bisconti <julien.bisconti at hotmail dot com>",
2018-06-08 17:38:46 +00:00
"license": "Apache-2.0",
2018-03-17 15:27:41 +00:00
"bugs": {
"url": "https://github.com/veggiemonk/awesome-docker/issues"
},
"homepage": "https://github.com/veggiemonk/awesome-docker#readme",
"dependencies": {
2019-08-28 06:17:23 +00:00
"cheerio": "1.0.0-rc.3",
2018-07-21 13:12:59 +00:00
"draftlog": "1.0.12",
2020-10-05 22:46:54 +00:00
"fs-extra": "9.0.1",
"node-fetch": "2.6.1",
2019-10-14 09:02:30 +00:00
"parcel-bundler": "1.12.4",
2020-02-09 06:33:01 +00:00
"rimraf": "3.0.2",
2019-11-03 21:37:51 +00:00
"showdown": "1.9.1",
2020-10-05 22:46:54 +00:00
"sitemap": "6.3.2"
2018-03-17 15:27:41 +00:00
},
"devDependencies": {
"babel-eslint": "10.1.0",
2020-10-05 22:46:54 +00:00
"eslint": "7.10.0",
"eslint-config-airbnb-base": "14.2.0",
"eslint-config-prettier": "6.12.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jsx-a11y": "6.3.1",
"eslint-plugin-prettier": "3.1.4",
2020-03-15 09:22:55 +00:00
"minimist": "1.2.5",
2020-10-05 22:46:54 +00:00
"prettier": "2.1.2"
2018-03-17 15:27:41 +00:00
}
2020-04-13 15:42:17 +00:00
}