Files
website/node_modules/marked-smartypants/package.json
2024-05-06 17:15:30 -04:00

68 lines
1.9 KiB
JSON

{
"name": "marked-smartypants",
"version": "1.1.6",
"description": "marked extension for smartypants",
"main": "./lib/index.cjs",
"module": "./lib/index.mjs",
"browser": "./lib/index.umd.js",
"type": "module",
"types": "./src/index.d.ts",
"keywords": [
"marked",
"extension",
"smartypants"
],
"files": [
"lib/",
"src/"
],
"exports": {
"types": "./src/index.d.ts",
"import": "./lib/index.mjs",
"require": "./lib/index.cjs"
},
"scripts": {
"test": "npm run build && cross-env NODE_OPTIONS=--experimental-vm-modules jest --verbose",
"test:cover": "npm run build && cross-env NODE_OPTIONS=--experimental-vm-modules jest --coverage",
"test:types": "tsd -f spec/index.test-d.ts -t src/index.d.ts",
"lint": "eslint .",
"build": "rollup -c rollup.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/markedjs/marked-smartypants.git"
},
"author": "Tony Brix <Tony@Brix.ninja> (https://Tony.Brix.ninja)",
"license": "MIT",
"bugs": {
"url": "https://github.com/markedjs/marked-smartypants/issues"
},
"homepage": "https://github.com/markedjs/marked-smartypants#readme",
"peerDependencies": {
"marked": ">=4 <13"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.2.3",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^11.1.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^9.2.6",
"@semantic-release/npm": "^11.0.2",
"@semantic-release/release-notes-generator": "^12.1.0",
"cross-env": "^7.0.3",
"eslint": "^8.56.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.1.1",
"jest-cli": "^29.7.0",
"marked": "^12.0.0",
"rollup": "^4.9.6",
"semantic-release": "^23.0.0",
"tsd": "^0.30.4"
},
"dependencies": {
"smartypants": "^0.2.2"
}
}