{ "name": "trim-trailing-lines", "version": "1.1.0", "description": "Remove final newline characters from a string", "license": "MIT", "keywords": [ "trim", "final", "line", "newline", "characters" ], "repository": "https://github.com/wooorm/trim-trailing-lines", "bugs": "https://github.com/wooorm/trim-trailing-lines/issues", "author": "Titus Wormer (http://wooorm.com)", "contributors": [ "Titus Wormer (http://wooorm.com)" ], "files": [ "index.js" ], "dependencies": {}, "devDependencies": { "browserify": "^13.0.0", "esmangle": "^1.0.0", "remark-cli": "^2.0.0", "remark-preset-wooorm": "^1.0.0", "nyc": "^10.0.0", "tape": "^4.6.3", "xo": "^0.17.1" }, "scripts": { "build-md": "remark . -qfo", "build-bundle": "browserify index.js -s trimTrailingLines > trim-trailing-lines.js", "build-mangle": "esmangle trim-trailing-lines.js > trim-trailing-lines.min.js", "build": "npm run build-md && npm run build-bundle && npm run build-mangle", "lint": "xo", "test-api": "node test", "test-coverage": "nyc --reporter lcov tape test.js", "test": "npm run build && npm run lint && npm run test-coverage" }, "nyc": { "check-coverage": true, "lines": 100, "functions": 100, "branches": 100 }, "xo": { "space": true, "ignores": [ "trim-trailing-lines.js" ] }, "remarkConfig": { "presets": "wooorm" } }