marked-mfm/package.json

40 lines
1.0 KiB
JSON
Raw Permalink Normal View History

2022-07-08 08:32:20 +00:00
{
"name": "marked-mfm",
2022-08-01 06:06:55 +00:00
"version": "0.5.0",
2022-07-08 08:32:20 +00:00
"description": "Marked.js extension for Misskey-flavored Markdown",
"main": "./src/index.js",
2022-07-08 18:25:04 +00:00
"browser": "./lib/index.umd.js",
2022-07-08 08:32:20 +00:00
"type": "module",
"scripts": {
"lint": "eslint .",
"lint-fix": "eslint --fix .",
2022-07-08 18:25:04 +00:00
"test": "jest --verbose",
2022-07-31 18:35:07 +00:00
"build": "rollup -c rollup.config.umd.js",
"dingus": "node ./src/dingus.js"
2022-07-08 08:32:20 +00:00
},
"repository": {
"type": "git",
"url": "https://akkoma.dev/sfr/marked-mfm"
},
"bugs": {
"url": "https://akkoma.dev/sfr/marked-mfm/issues"
},
"author": "Sol Fisher Romanoff <sol@solfisher.com>",
"license": "BlueOak-1.0.0",
"peerDependencies": {
"marked": "^4.0.17"
},
"dependencies": {
"@babel/core": "^7.18.6",
"@babel/preset-env": "^7.18.6",
2022-07-08 18:25:04 +00:00
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^22.0.1",
2022-07-08 08:32:20 +00:00
"babel-jest": "^28.1.2",
"eslint": "^8.19.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-jest": "^26.5.3",
2022-07-08 18:25:04 +00:00
"jest-cli": "^28.1.2",
"rollup": "^2.76.0"
2022-07-08 08:32:20 +00:00
}
}