108 lines
2.7 KiB
JSON
108 lines
2.7 KiB
JSON
|
{
|
||
|
"name": "micromark-extension-gfm-task-list-item",
|
||
|
"version": "2.0.1",
|
||
|
"description": "micromark extension to support GFM task list items",
|
||
|
"license": "MIT",
|
||
|
"keywords": [
|
||
|
"micromark",
|
||
|
"micromark-extension",
|
||
|
"task",
|
||
|
"list",
|
||
|
"item",
|
||
|
"check",
|
||
|
"checkbox",
|
||
|
"todo",
|
||
|
"gfm",
|
||
|
"markdown",
|
||
|
"unified"
|
||
|
],
|
||
|
"repository": "micromark/micromark-extension-gfm-task-list-item",
|
||
|
"bugs": "https://github.com/micromark/micromark-extension-gfm-task-list-item/issues",
|
||
|
"funding": {
|
||
|
"type": "opencollective",
|
||
|
"url": "https://opencollective.com/unified"
|
||
|
},
|
||
|
"author": "Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)",
|
||
|
"contributors": [
|
||
|
"Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)"
|
||
|
],
|
||
|
"sideEffects": false,
|
||
|
"type": "module",
|
||
|
"files": [
|
||
|
"dev/",
|
||
|
"lib/",
|
||
|
"index.d.ts",
|
||
|
"index.js"
|
||
|
],
|
||
|
"exports": {
|
||
|
"development": "./dev/index.js",
|
||
|
"default": "./index.js"
|
||
|
},
|
||
|
"dependencies": {
|
||
|
"devlop": "^1.0.0",
|
||
|
"micromark-factory-space": "^2.0.0",
|
||
|
"micromark-util-character": "^2.0.0",
|
||
|
"micromark-util-symbol": "^2.0.0",
|
||
|
"micromark-util-types": "^2.0.0"
|
||
|
},
|
||
|
"devDependencies": {
|
||
|
"@types/node": "^20.0.0",
|
||
|
"c8": "^8.0.0",
|
||
|
"control-pictures": "^2.0.0",
|
||
|
"create-gfm-fixtures": "^1.0.0",
|
||
|
"micromark": "^4.0.0",
|
||
|
"micromark-build": "^2.0.0",
|
||
|
"prettier": "^2.0.0",
|
||
|
"remark-cli": "^11.0.0",
|
||
|
"remark-preset-wooorm": "^9.0.0",
|
||
|
"type-coverage": "^2.0.0",
|
||
|
"typescript": "^5.0.0",
|
||
|
"xo": "^0.54.0"
|
||
|
},
|
||
|
"scripts": {
|
||
|
"prepack": "npm run build && npm run format",
|
||
|
"build": "tsc --build --clean && tsc --build && type-coverage && micromark-build",
|
||
|
"format": "remark . -qfo && prettier . -w --loglevel warn && xo --fix",
|
||
|
"test-api-prod": "node --conditions production test/index.js",
|
||
|
"test-api-dev": "node --conditions development test/index.js",
|
||
|
"test-api": "npm run test-api-dev && npm run test-api-prod",
|
||
|
"test-coverage": "c8 --100 --reporter lcov npm run test-api",
|
||
|
"test": "npm run build && npm run format && npm run test-coverage"
|
||
|
},
|
||
|
"prettier": {
|
||
|
"bracketSpacing": false,
|
||
|
"semi": false,
|
||
|
"singleQuote": true,
|
||
|
"tabWidth": 2,
|
||
|
"trailingComma": "none",
|
||
|
"useTabs": false
|
||
|
},
|
||
|
"remarkConfig": {
|
||
|
"plugins": [
|
||
|
"remark-preset-wooorm"
|
||
|
]
|
||
|
},
|
||
|
"typeCoverage": {
|
||
|
"atLeast": 100,
|
||
|
"detail": true,
|
||
|
"ignoreCatch": true,
|
||
|
"strict": true
|
||
|
},
|
||
|
"xo": {
|
||
|
"prettier": true,
|
||
|
"rules": {
|
||
|
"unicorn/no-this-assignment": "off"
|
||
|
},
|
||
|
"overrides": [
|
||
|
{
|
||
|
"files": [
|
||
|
"test/**/*.js"
|
||
|
],
|
||
|
"rules": {
|
||
|
"no-await-in-loop": 0
|
||
|
}
|
||
|
}
|
||
|
]
|
||
|
}
|
||
|
}
|