UNPKG

yaml-unist-parser

Version:

A YAML parser that produces output compatible with unist

65 lines (64 loc) 1.75 kB
{ "name": "yaml-unist-parser", "version": "2.0.1", "description": "A YAML parser that produces output compatible with unist", "keywords": [ "unist", "yaml" ], "type": "module", "types": "lib/index.d.ts", "exports": { ".": "./lib/index.js", "./*": "./*" }, "repository": "prettier/yaml-unist-parser", "homepage": "https://github.com/prettier/yaml-unist-parser#readme", "author": { "name": "Ika", "email": "ikatyang@gmail.com", "url": "https://github.com/ikatyang" }, "license": "MIT", "scripts": { "prepublish": "patch-package && yarn run build", "lint": "run-p lint:*", "lint:eslint": "eslint --ext=.ts,.cjs,.mjs .", "lint:prettier": "prettier --check src", "fix": "run-s fix:*", "fix:eslint": "yarn lint:eslint --fix", "fix:prettier": "yarn lint:prettier --write", "test": "node --experimental-vm-modules node_modules/jest/bin/jest.js", "prebuild": "rm -rf ./lib", "build": "tsc -p ./tsconfig.build.json", "release": "yarn build && standard-version" }, "dependencies": { "lines-and-columns": "^2.0.3", "tslib": "^2.4.0", "yaml": "^1.10.0" }, "devDependencies": { "@types/jest": "29.1.2", "@types/node": "18.8.5", "@typescript-eslint/eslint-plugin": "5.40.0", "@typescript-eslint/parser": "5.40.0", "eslint": "8.25.0", "eslint-config-prettier": "8.5.0", "eslint-plugin-import": "2.26.0", "jest": "29.1.2", "jest-snapshot-serializer-raw": "1.2.0", "npm-run-all": "4.1.5", "patch-package": "6.4.7", "prettier": "2.7.1", "standard-version": "9.5.0", "ts-jest": "29.0.3", "typescript": "4.8.4" }, "engines": { "node": ">= 14" }, "files": [ "/lib/**/*" ] }