2018-07-28 21:21:36 +03:00
|
|
|
{
|
|
|
|
"name": "mdx-deck",
|
2018-08-03 03:39:56 +03:00
|
|
|
"version": "1.3.0",
|
2018-07-29 02:02:19 +03:00
|
|
|
"description": "MDX-based slide deck presentations",
|
|
|
|
"main": "dist/index.js",
|
2018-07-29 01:32:05 +03:00
|
|
|
"bin": {
|
|
|
|
"mdx-deck": "./cli.js"
|
|
|
|
},
|
2018-07-28 21:21:36 +03:00
|
|
|
"scripts": {
|
2018-07-29 02:02:19 +03:00
|
|
|
"prepare": "babel src -d dist",
|
2018-07-29 04:39:45 +03:00
|
|
|
"start": "./cli.js docs/index.mdx -p 8989",
|
2018-08-01 02:12:55 +03:00
|
|
|
"build": "./cli.js build docs/index.mdx -d site",
|
|
|
|
"pdf": "./cli.js pdf docs/index.mdx -d site",
|
2018-07-29 23:19:12 +03:00
|
|
|
"help": "./cli.js",
|
2018-07-30 00:48:14 +03:00
|
|
|
"test": "jest"
|
2018-07-28 21:21:36 +03:00
|
|
|
},
|
|
|
|
"keywords": [],
|
|
|
|
"author": "Brent Jackson",
|
|
|
|
"license": "MIT",
|
|
|
|
"dependencies": {
|
2018-07-29 20:18:00 +03:00
|
|
|
"@compositor/webfont": "^1.0.37",
|
2018-07-29 22:55:48 +03:00
|
|
|
"@mdx-js/mdx": "^0.15.0-1",
|
2018-07-28 21:21:36 +03:00
|
|
|
"@mdx-js/tag": "^0.14.1",
|
|
|
|
"chalk": "^2.4.1",
|
2018-07-29 01:32:05 +03:00
|
|
|
"clipboardy": "^1.2.3",
|
2018-07-28 21:21:36 +03:00
|
|
|
"gray-matter": "^4.0.1",
|
2018-08-03 02:59:44 +03:00
|
|
|
"hhmmss": "^1.0.0",
|
2018-08-01 01:24:46 +03:00
|
|
|
"loader-utils": "^1.1.0",
|
2018-07-29 21:55:37 +03:00
|
|
|
"lodash.debounce": "^4.0.8",
|
2018-07-29 01:32:05 +03:00
|
|
|
"meow": "^5.0.0",
|
2018-07-31 22:35:27 +03:00
|
|
|
"normalize-newline": "^3.0.0",
|
2018-08-01 04:12:09 +03:00
|
|
|
"ok-cli": "^3.1.0",
|
2018-07-29 01:32:05 +03:00
|
|
|
"pkg-conf": "^2.1.0",
|
2018-07-28 21:21:36 +03:00
|
|
|
"prop-types": "^15.6.2",
|
2018-07-31 21:44:57 +03:00
|
|
|
"puppeteer": "^1.6.1",
|
2018-07-29 21:55:37 +03:00
|
|
|
"react": "^16.4.1",
|
2018-07-28 21:21:36 +03:00
|
|
|
"react-dev-utils": "^5.0.1",
|
2018-08-01 01:24:46 +03:00
|
|
|
"remark-emoji": "^2.0.1",
|
2018-07-28 23:46:11 +03:00
|
|
|
"stringify-object": "^3.2.2",
|
2018-07-29 22:55:48 +03:00
|
|
|
"styled-components": ">=3.0.0",
|
2018-07-28 23:46:11 +03:00
|
|
|
"styled-system": "^3.0.2",
|
2018-07-29 21:51:32 +03:00
|
|
|
"superbox": "^2.1.0",
|
|
|
|
"webpack-hot-client": "^4.1.1"
|
2018-07-29 02:02:19 +03:00
|
|
|
},
|
2018-07-29 22:52:25 +03:00
|
|
|
"peerDependencies": {},
|
2018-07-29 02:02:19 +03:00
|
|
|
"devDependencies": {
|
2018-07-30 00:48:14 +03:00
|
|
|
"babel-cli": "^6.26.0",
|
|
|
|
"jest": "^23.4.2",
|
|
|
|
"jest-styled-components": "^5.0.1",
|
|
|
|
"prettier": "^1.14.0",
|
|
|
|
"react-test-renderer": "^16.4.1"
|
|
|
|
},
|
|
|
|
"jest": {
|
|
|
|
"roots": [
|
|
|
|
"<rootDir>/test/"
|
|
|
|
],
|
|
|
|
"testMatch": [
|
|
|
|
"**/test/**/*.js"
|
|
|
|
],
|
|
|
|
"testURL": "http://localhost/",
|
|
|
|
"coverageReporters": [
|
|
|
|
"html"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"prettier": {
|
|
|
|
"semi": false,
|
|
|
|
"singleQuote": true,
|
|
|
|
"jsxBracketSameLine": true
|
2018-07-28 21:21:36 +03:00
|
|
|
}
|
|
|
|
}
|