mirror of
https://github.com/bendtherules/react-to-markdown.git
synced 2026-08-18 13:53:11 +00:00
Bumps [json5](https://github.com/json5/json5) to 2.2.3 and updates ancestor dependency [jest](https://github.com/facebook/jest/tree/HEAD/packages/jest). These dependencies need to be updated together. Updates `json5` from 2.1.1 to 2.2.3 - [Release notes](https://github.com/json5/json5/releases) - [Changelog](https://github.com/json5/json5/blob/main/CHANGELOG.md) - [Commits](https://github.com/json5/json5/compare/v2.1.1...v2.2.3) Updates `jest` from 23.6.0 to 29.3.1 - [Release notes](https://github.com/facebook/jest/releases) - [Changelog](https://github.com/facebook/jest/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/jest/commits/v29.3.1/packages/jest) --- updated-dependencies: - dependency-name: json5 dependency-type: indirect - dependency-name: jest dependency-type: direct:development ... Signed-off-by: dependabot[bot] <support@github.com>
62 lines
1.5 KiB
JSON
62 lines
1.5 KiB
JSON
{
|
|
"name": "react-to-markdown",
|
|
"version": "0.0.1",
|
|
"description": "react-to-markdown",
|
|
"license": "MIT",
|
|
"repository": "",
|
|
"author": {
|
|
"name": "",
|
|
"email": "",
|
|
"url": ""
|
|
},
|
|
"keywords": [
|
|
""
|
|
],
|
|
"files": [
|
|
"lib"
|
|
],
|
|
"main": "lib/index",
|
|
"types": "lib/index",
|
|
"scripts": {
|
|
"clean": "rimraf lib && rimraf coverage",
|
|
"format": "prettier --write \"{src,__tests__}/**/*.ts*\"",
|
|
"lint": "tslint --force --format verbose \"src/**/*.ts*\"",
|
|
"prepublishOnly": "npm run build",
|
|
"prebuild": "npm run clean && npm run format && npm run lint && echo Using TypeScript && tsc --version",
|
|
"build": "tsc --pretty",
|
|
"test": "jest",
|
|
"coverage": "jest --coverage",
|
|
"watch": "npm run build -- --watch",
|
|
"watch:test": "jest --watch"
|
|
},
|
|
"dependencies": {
|
|
"mdast-builder": "^1.1.1",
|
|
"preact": "^10.1.1",
|
|
"preact-render-to-string": "^5.1.3",
|
|
"react": "^16.12.0",
|
|
"remark-stringify": "^7.0.4",
|
|
"unified": "^8.4.2"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^23.3.3",
|
|
"@types/node": "^10.11.4",
|
|
"@types/react": "^16.9.16",
|
|
"@types/unist": "^2.0.3",
|
|
"coveralls": "^3.0.2",
|
|
"jest": "^29.3.1",
|
|
"prettier": "^1.14.3",
|
|
"rimraf": "^2.6.2",
|
|
"ts-jest": "^23.10.3",
|
|
"ts-node": "^7.0.1",
|
|
"tslint": "^5.11.0",
|
|
"tslint-config-prettier": "^1.15.0",
|
|
"typescript": "^3.1.1"
|
|
},
|
|
"engines": {
|
|
"node": ">=10.0.0"
|
|
},
|
|
"jest": {
|
|
"preset": "ts-jest"
|
|
}
|
|
}
|