1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- {
- "name": "unist-util-remove-position",
- "version": "2.0.1",
- "description": "unist utility to remove positions from a tree",
- "license": "MIT",
- "keywords": [
- "unist",
- "unist-util",
- "util",
- "utility",
- "remove",
- "position",
- "location",
- "clean",
- "force"
- ],
- "repository": "syntax-tree/unist-util-remove-position",
- "bugs": "https://github.com/syntax-tree/unist-util-remove-position/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)"
- ],
- "files": [
- "index.js"
- ],
- "dependencies": {
- "unist-util-visit": "^2.0.0"
- },
- "devDependencies": {
- "browserify": "^16.0.0",
- "nyc": "^15.0.0",
- "prettier": "^1.0.0",
- "remark": "^11.0.0",
- "remark-cli": "^7.0.0",
- "remark-preset-wooorm": "^6.0.0",
- "tape": "^4.0.0",
- "tinyify": "^2.0.0",
- "unist-builder": "^2.0.0",
- "xo": "^0.26.0"
- },
- "scripts": {
- "format": "remark . -qfo && prettier --write \"**/*.js\" && xo --fix",
- "build-bundle": "browserify . -s unistUtilRemovePosition > unist-util-remove-position.js",
- "build-mangle": "browserify . -s unistUtilRemovePosition -p tinyify > unist-util-remove-position.min.js",
- "build": "npm run build-bundle && npm run build-mangle",
- "test-api": "node test",
- "test-coverage": "nyc --reporter lcov tape test.js",
- "test": "npm run format && npm run build && npm run test-coverage"
- },
- "prettier": {
- "tabWidth": 2,
- "useTabs": false,
- "singleQuote": true,
- "bracketSpacing": false,
- "semi": false,
- "trailingComma": "none"
- },
- "xo": {
- "prettier": true,
- "esnext": false,
- "ignores": [
- "unist-util-remove-position.js"
- ]
- },
- "nyc": {
- "check-coverage": true,
- "lines": 100,
- "functions": 100,
- "branches": 100
- },
- "remarkConfig": {
- "plugins": [
- "preset-wooorm"
- ]
- }
- }
|