Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/fourtyone11/origin-hugo-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'assets/node_modules/trim-trailing-lines/package.json')
-rw-r--r--assets/node_modules/trim-trailing-lines/package.json72
1 files changed, 0 insertions, 72 deletions
diff --git a/assets/node_modules/trim-trailing-lines/package.json b/assets/node_modules/trim-trailing-lines/package.json
deleted file mode 100644
index 395ea22..0000000
--- a/assets/node_modules/trim-trailing-lines/package.json
+++ /dev/null
@@ -1,72 +0,0 @@
-{
- "name": "trim-trailing-lines",
- "version": "1.1.3",
- "description": "Remove final line feeds from a string",
- "license": "MIT",
- "keywords": [
- "trim",
- "final",
- "line",
- "newline",
- "characters"
- ],
- "repository": "wooorm/trim-trailing-lines",
- "bugs": "https://github.com/wooorm/trim-trailing-lines/issues",
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/wooorm"
- },
- "author": "Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)",
- "contributors": [
- "Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)"
- ],
- "files": [
- "index.js"
- ],
- "dependencies": {},
- "devDependencies": {
- "browserify": "^16.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",
- "xo": "^0.25.0"
- },
- "scripts": {
- "format": "remark . -qfo && prettier --write \"**/*.js\" && xo --fix",
- "build-bundle": "browserify . -s trimTrailingLines -o trim-trailing-lines.js",
- "build-mangle": "browserify . -s trimTrailingLines -p tinyify -o trim-trailing-lines.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"
- },
- "nyc": {
- "check-coverage": true,
- "lines": 100,
- "functions": 100,
- "branches": 100
- },
- "prettier": {
- "tabWidth": 2,
- "useTabs": false,
- "singleQuote": true,
- "bracketSpacing": false,
- "semi": false,
- "trailingComma": "none"
- },
- "xo": {
- "prettier": true,
- "esnext": false,
- "ignores": [
- "trim-trailing-lines.js"
- ]
- },
- "remarkConfig": {
- "plugins": [
- "preset-wooorm"
- ]
- }
-}