| { |
| "author": "Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)", |
| "bugs": "https://github.com/syntax-tree/unist-util-stringify-position/issues", |
| "contributors": [ |
| "Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)" |
| ], |
| "dependencies": { |
| "@types/unist": "^2.0.2" |
| }, |
| "description": "unist utility to serialize a node, position, or point as a human readable location", |
| "devDependencies": { |
| "browserify": "^16.0.0", |
| "dtslint": "^3.0.0", |
| "nyc": "^15.0.0", |
| "prettier": "^1.0.0", |
| "remark-cli": "^7.0.0", |
| "remark-preset-wooorm": "^6.0.0", |
| "tape": "^4.0.0", |
| "tinyify": "^2.0.0", |
| "typescript": "^3.0.0", |
| "xo": "^0.27.0" |
| }, |
| "files": [ |
| "types/index.d.ts", |
| "index.js" |
| ], |
| "funding": { |
| "type": "opencollective", |
| "url": "https://opencollective.com/unified" |
| }, |
| "keywords": [ |
| "unist", |
| "unist-util", |
| "util", |
| "utility", |
| "position", |
| "location", |
| "point", |
| "node", |
| "stringify", |
| "tostring" |
| ], |
| "license": "MIT", |
| "name": "unist-util-stringify-position", |
| "nyc": { |
| "branches": 100, |
| "check-coverage": true, |
| "functions": 100, |
| "lines": 100 |
| }, |
| "prettier": { |
| "bracketSpacing": false, |
| "semi": false, |
| "singleQuote": true, |
| "tabWidth": 2, |
| "trailingComma": "none", |
| "useTabs": false |
| }, |
| "remarkConfig": { |
| "plugins": [ |
| "preset-wooorm" |
| ] |
| }, |
| "repository": "syntax-tree/unist-util-stringify-position", |
| "scripts": { |
| "build": "npm run build-bundle && npm run build-mangle", |
| "build-bundle": "browserify . -s unistUtilStringifyPosition > unist-util-stringify-position.js", |
| "build-mangle": "browserify . -s unistUtilStringifyPosition -p tinyify > unist-util-stringify-position.min.js", |
| "format": "remark . -qfo && prettier --write \"**/*.{js,ts}\" && xo --fix", |
| "test": "npm run format && npm run build && npm run test-coverage && npm run test-types", |
| "test-api": "node test", |
| "test-coverage": "nyc --reporter lcov tape test.js", |
| "test-types": "dtslint types" |
| }, |
| "types": "types/index.d.ts", |
| "version": "2.0.3", |
| "xo": { |
| "esnext": false, |
| "ignores": [ |
| "unist-util-stringify-position.js" |
| ], |
| "prettier": true |
| } |
| } |