123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119 |
- {
- "name": "unified",
- "version": "11.0.4",
- "description": "parse, inspect, transform, and serialize content through syntax trees",
- "license": "MIT",
- "keywords": [
- "ast",
- "compile",
- "content",
- "cst",
- "parse",
- "process",
- "rehype",
- "remark",
- "retext",
- "serialize",
- "stringify",
- "syntax",
- "transform",
- "tree",
- "unified"
- ],
- "homepage": "https://unifiedjs.com",
- "repository": "unifiedjs/unified",
- "bugs": "https://github.com/unifiedjs/unified/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)",
- "Junyoung Choi <fluke8259@gmail.com>",
- "Hernan Rajchert <hrajchert@gmail.com>",
- "Christian Murphy <christian.murphy.42@gmail.com>",
- "Vse Mozhet Byt <vsemozhetbyt@gmail.com>",
- "Richard Littauer <richard.littauer@gmail.com>"
- ],
- "sideEffects": false,
- "type": "module",
- "exports": "./index.js",
- "files": [
- "lib/",
- "index.d.ts",
- "index.js"
- ],
- "dependencies": {
- "@types/unist": "^3.0.0",
- "bail": "^2.0.0",
- "devlop": "^1.0.0",
- "extend": "^3.0.0",
- "is-plain-obj": "^4.0.0",
- "trough": "^2.0.0",
- "vfile": "^6.0.0"
- },
- "devDependencies": {
- "@types/extend": "^3.0.0",
- "@types/hast": "^3.0.0",
- "@types/mdast": "^4.0.0",
- "@types/node": "^20.0.0",
- "c8": "^8.0.0",
- "prettier": "^3.0.0",
- "remark-cli": "^11.0.0",
- "remark-preset-wooorm": "^9.0.0",
- "tsd": "^0.29.0",
- "type-coverage": "^2.0.0",
- "typescript": "^5.0.0",
- "xo": "^0.56.0"
- },
- "scripts": {
- "build": "tsc --build --clean && tsc --build && node script/fix-types.js && type-coverage && tsd",
- "format": "remark . --frail --output --quiet && prettier . --log-level warn --write && xo --fix",
- "prepack": "npm run build && npm run format",
- "test": "npm run build && npm run format && npm run test-coverage",
- "test-api": "node --conditions development test/index.js",
- "test-coverage": "c8 --100 --check-coverage --reporter lcov npm run test-api"
- },
- "prettier": {
- "bracketSpacing": false,
- "singleQuote": true,
- "semi": false,
- "tabWidth": 2,
- "trailingComma": "none",
- "useTabs": false
- },
- "remarkConfig": {
- "plugins": [
- "remark-preset-wooorm",
- [
- "remark-lint-no-html",
- false
- ]
- ]
- },
- "typeCoverage": {
- "atLeast": 100,
- "detail": true,
- "ignoreCatch": true,
- "strict": true
- },
- "xo": {
- "overrides": [
- {
- "files": [
- "**/*.ts"
- ],
- "rules": {
- "@typescript-eslint/ban-types": "off",
- "@typescript-eslint/consistent-type-definitions": "off",
- "@typescript-eslint/naming-convention": "off"
- }
- }
- ],
- "prettier": true,
- "rules": {
- "unicorn/no-this-assignment": "off"
- }
- }
- }
|