marp/package.json
2019-10-31 21:27:41 +09:00

42 lines
969 B
JSON

{
"name": "@marp-team/marp",
"description": "The entrance repository of Marp family",
"private": true,
"license": "MIT",
"author": {
"name": "Marp team",
"url": "https://github.com/marp-team"
},
"contributors": [
{
"name": "Yuki Hattori",
"url": "https://github.com/yhatt"
}
],
"repository": {
"type": "git",
"url": "https://github.com/marp-team/marp"
},
"workspaces": [
"packages/*"
],
"prettier": {
"semi": false,
"singleQuote": true,
"trailingComma": "es5"
},
"scripts": {
"check:format": "yarn -s format -c",
"format": "prettier \"**/*.{css,html,js,json,jsx,md,mdx,scss,yaml,yml}\"",
"lint": "eslint \"**/*.{js,jsx}\"",
"website": "yarn -s workspace @marp-team/marp-website serve"
},
"devDependencies": {
"eslint": "^6.6.0",
"eslint-config-prettier": "^6.5.0",
"eslint-plugin-react": "^7.16.0",
"lerna": "^3.18.3",
"prettier": "^1.18.2"
}
}