All checks were successful
Publish To Prod / deploy_and_publish (push) Successful in 35s
66 lines
1.5 KiB
JSON
66 lines
1.5 KiB
JSON
{
|
|
"name": "remark-slate",
|
|
"version": "1.8.6",
|
|
"description": "remark plugin to compile Markdown to a slate compatible object",
|
|
"license": "MIT",
|
|
"module": "dist/remark-slate.esm.js",
|
|
"scripts": {
|
|
"start": "tsdx watch",
|
|
"build": "tsdx build",
|
|
"test": "tsdx test",
|
|
"lint": "tsdx lint",
|
|
"prepare": "tsdx build"
|
|
},
|
|
"main": "dist/index.js",
|
|
"typings": "dist/index.d.ts",
|
|
"keywords": [
|
|
"remark",
|
|
"remark-plugin",
|
|
"plugin",
|
|
"mdast",
|
|
"markdown",
|
|
"slate",
|
|
"RTE",
|
|
"text editor",
|
|
"slate markdown"
|
|
],
|
|
"repository": "hanford/remark-slate",
|
|
"bugs": "https://github.com/hanford/remark-slate/issues",
|
|
"author": "Jack Hanford <jackhanford@gmail.com> (https://jackhanford.com)",
|
|
"contributors": [
|
|
"Jack Hanford <jackhanford@gmail.com> (https://jackhanford.com)",
|
|
"Horacio Herrera <hi@horacioh.com> (https://horacioh.com)"
|
|
],
|
|
"files": [
|
|
"dist",
|
|
"src"
|
|
],
|
|
"dependencies": {
|
|
"@types/escape-html": "^1.0.0",
|
|
"escape-html": "^1.0.3"
|
|
},
|
|
"devDependencies": {
|
|
"eslint-plugin-prettier": "^3.1.3",
|
|
"husky": "^4.2.5",
|
|
"jest": "^25.2.4",
|
|
"prettier": "^2.0.0",
|
|
"remark": "^13.0.0",
|
|
"remark-parse": "^9.0.0",
|
|
"tsdx": "^0.13.2",
|
|
"tslib": "^2.0.0",
|
|
"typescript": "^4.2.2",
|
|
"unified": "^9.0.0"
|
|
},
|
|
"prettier": {
|
|
"printWidth": 80,
|
|
"semi": true,
|
|
"singleQuote": true,
|
|
"trailingComma": "es5"
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "tsdx lint"
|
|
}
|
|
}
|
|
}
|