2016-01-28 23:27:15 +01:00
|
|
|
{
|
2016-02-11 12:09:58 +01:00
|
|
|
"name": "mkdocs-material",
|
2019-08-27 17:41:51 +02:00
|
|
|
"version": "4.4.2",
|
2017-01-12 20:15:30 +01:00
|
|
|
"description": "A Material Design theme for MkDocs",
|
2016-10-07 21:27:29 +02:00
|
|
|
"keywords": [
|
|
|
|
"mkdocs",
|
|
|
|
"documentation",
|
|
|
|
"theme"
|
2016-01-28 23:27:15 +01:00
|
|
|
],
|
2017-11-08 13:28:23 +01:00
|
|
|
"homepage": "https://squidfunk.github.io/mkdocs-material/",
|
2016-10-07 21:27:29 +02:00
|
|
|
"bugs": {
|
2016-10-10 12:35:25 +02:00
|
|
|
"url": "https://github.com/squidfunk/mkdocs-material/issues",
|
|
|
|
"email": "martin.donath@squidfunk.com"
|
2016-10-07 21:27:29 +02:00
|
|
|
},
|
2016-01-28 23:27:15 +01:00
|
|
|
"license": "MIT",
|
2016-10-07 21:27:29 +02:00
|
|
|
"author": {
|
|
|
|
"name": "Martin Donath",
|
|
|
|
"email": "martin.donath@squidfunk.com"
|
2016-01-28 23:27:15 +01:00
|
|
|
},
|
2016-10-07 21:27:29 +02:00
|
|
|
"contributors": [],
|
2016-01-28 23:27:15 +01:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2016-02-09 12:58:55 +01:00
|
|
|
"url": "https://github.com/squidfunk/mkdocs-material.git"
|
2016-01-28 23:27:15 +01:00
|
|
|
},
|
2016-10-07 21:27:29 +02:00
|
|
|
"scripts": {
|
2019-09-28 20:07:42 +02:00
|
|
|
"build": "make -j build",
|
2017-11-21 21:32:25 +01:00
|
|
|
"clean": "make clean",
|
|
|
|
"lint": "make lint",
|
2019-09-28 19:55:08 +02:00
|
|
|
"start": "make start"
|
2016-10-07 21:27:29 +02:00
|
|
|
},
|
2019-09-28 19:32:02 +02:00
|
|
|
"dependencies": {
|
2018-04-02 18:54:20 +02:00
|
|
|
"clipboard": "^2.0.0",
|
2019-08-06 18:02:04 +02:00
|
|
|
"js-cookie": "^2.2.1",
|
2019-02-26 19:57:17 +01:00
|
|
|
"lunr": "^2.3.6",
|
2019-02-22 22:10:10 +01:00
|
|
|
"lunr-languages": "^1.1.0",
|
2019-09-28 19:32:02 +02:00
|
|
|
"rambda": "^3.1.0",
|
|
|
|
"rxjs": "^6.5.3"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
|
|
|
"@types/node": "^12.7.8",
|
2019-09-29 00:30:56 +02:00
|
|
|
"@types/webpack": "^4.39.2",
|
2019-09-28 19:32:02 +02:00
|
|
|
"autoprefixer": "^9.6.1",
|
|
|
|
"css-mqpacker": "^7.0.0",
|
|
|
|
"csso-cli": "^2.0.2",
|
|
|
|
"html-minifier": "^4.0.0",
|
2017-11-21 21:32:25 +01:00
|
|
|
"material-design-color": "^2.3.2",
|
|
|
|
"material-shadows": "^3.0.1",
|
2019-09-22 18:20:58 +02:00
|
|
|
"modularscale-sass": "^3.0.10",
|
2019-04-27 04:43:58 +02:00
|
|
|
"node-sass": "^4.12.0",
|
2019-09-28 20:39:07 +02:00
|
|
|
"nodemon": "^1.19.2",
|
2019-09-28 19:32:02 +02:00
|
|
|
"postcss-cli": "^6.1.3",
|
2019-09-18 06:16:20 +02:00
|
|
|
"stylelint": "^11.0.0",
|
2019-09-15 16:54:14 +02:00
|
|
|
"stylelint-config-standard": "^19.0.0",
|
2019-09-16 22:03:51 +02:00
|
|
|
"stylelint-order": "^3.1.1",
|
2019-09-21 10:49:55 +02:00
|
|
|
"stylelint-scss": "^3.11.1",
|
2019-09-28 19:32:02 +02:00
|
|
|
"svgo": "^1.3.0",
|
2019-09-29 00:30:56 +02:00
|
|
|
"ts-loader": "^6.1.2",
|
2019-09-28 19:32:02 +02:00
|
|
|
"ts-node": "^7.0.1",
|
|
|
|
"tslint": "^5.18.0",
|
|
|
|
"tslint-sonarts": "^1.9.0",
|
2019-09-29 00:30:56 +02:00
|
|
|
"typescript": "^3.6.3",
|
|
|
|
"webpack": "^4.41.0",
|
|
|
|
"webpack-cli": "^3.3.9"
|
2016-10-07 21:27:29 +02:00
|
|
|
},
|
|
|
|
"engines": {
|
2017-11-21 21:32:25 +01:00
|
|
|
"node": ">= 8"
|
2016-10-07 21:27:29 +02:00
|
|
|
},
|
|
|
|
"private": true
|
2016-01-28 23:27:15 +01:00
|
|
|
}
|