This repository has been archived by the owner on Dec 15, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 69
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
72 additions
and
72 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,72 +1,72 @@ | ||
{ | ||
"name": "status-bar", | ||
"version": "1.8.17", | ||
"main": "./dist/main", | ||
"description": "Display information about the current editor such as cursor position, file path, grammar, current branch, ahead/behind commits counts, and line diff count.", | ||
"repository": "https://github.com/atom/status-bar", | ||
"license": "MIT", | ||
"engines": { | ||
"atom": "*" | ||
}, | ||
"scripts": { | ||
"test": "atom --test spec", | ||
"clean": "shx rm -rf dist", | ||
"babel": "npm run clean && shx cp -r lib dist && cross-env NODE_ENV=development cross-env BABEL_KEEP_MODULES=false babel dist --out-dir dist", | ||
"dev": "npm run clean && cross-env NODE_ENV=development cross-env BABEL_KEEP_MODULES=true rollup -c -w", | ||
"build": "npm run clean && cross-env NODE_ENV=production cross-env BABEL_KEEP_MODULES=true rollup -c ", | ||
"build-commit": "build-commit -o dist", | ||
"prepare": "npm run build" | ||
}, | ||
"dependencies": { | ||
"fs-plus": "^3.1.1", | ||
"grim": "^2.0.2", | ||
"underscore-plus": "^1.7.0" | ||
}, | ||
"providedServices": { | ||
"status-bar": { | ||
"description": "A container for indicators at the bottom of the workspace", | ||
"versions": { | ||
"1.1.0": "provideStatusBar", | ||
"0.58.0": "legacyProvideStatusBar" | ||
} | ||
} | ||
}, | ||
"configSchema": { | ||
"isVisible": { | ||
"type": "boolean", | ||
"default": true, | ||
"description": "Show status bar at the bottom of the workspace" | ||
}, | ||
"fullWidth": { | ||
"order": 1, | ||
"type": "boolean", | ||
"default": true, | ||
"title": "Full-width", | ||
"description": "Fit the status-bar to the window's full-width" | ||
}, | ||
"cursorPositionFormat": { | ||
"order": 2, | ||
"type": "string", | ||
"default": "%L:%C", | ||
"description": "Format for the cursor position status bar element, where %L is the line number and %C is the column number" | ||
}, | ||
"selectionCountFormat": { | ||
"order": 2, | ||
"type": "string", | ||
"default": "(%L, %C)", | ||
"description": "Format for the selection count status bar element, where %L is the line count and %C is the character count" | ||
} | ||
}, | ||
"devDependencies": { | ||
"coffeelint": "^1.9.7", | ||
"coffeescript": "^1.12.7", | ||
"rollup": "^2.21.0", | ||
"rollup-plugin-atomic": "^1.2.0", | ||
"shx": "latest", | ||
"cross-env": "^7.0.2", | ||
"@babel/cli": "7.10.5", | ||
"@babel/core": "7.10.5", | ||
"babel-preset-atomic": "^1.0.7", | ||
"build-commit": "latest" | ||
} | ||
} | ||
{ | ||
"name": "status-bar", | ||
"version": "1.8.17", | ||
"main": "./dist/main", | ||
"description": "Display information about the current editor such as cursor position, file path, grammar, current branch, ahead/behind commits counts, and line diff count.", | ||
"repository": "https://github.com/atom/status-bar", | ||
"license": "MIT", | ||
"engines": { | ||
"atom": "*" | ||
}, | ||
"scripts": { | ||
"test": "atom --test spec", | ||
"clean": "shx rm -rf dist", | ||
"babel": "npm run clean && shx cp -r lib dist && cross-env NODE_ENV=development cross-env BABEL_KEEP_MODULES=false babel dist --out-dir dist", | ||
"dev": "npm run clean && cross-env NODE_ENV=development cross-env BABEL_KEEP_MODULES=true rollup -c -w", | ||
"build": "npm run clean && cross-env NODE_ENV=production cross-env BABEL_KEEP_MODULES=true rollup -c ", | ||
"build-commit": "build-commit -o dist", | ||
"prepare": "npm run build" | ||
}, | ||
"dependencies": { | ||
"fs-plus": "^3.1.1", | ||
"grim": "^2.0.2", | ||
"underscore-plus": "^1.7.0" | ||
}, | ||
"providedServices": { | ||
"status-bar": { | ||
"description": "A container for indicators at the bottom of the workspace", | ||
"versions": { | ||
"1.1.0": "provideStatusBar", | ||
"0.58.0": "legacyProvideStatusBar" | ||
} | ||
} | ||
}, | ||
"configSchema": { | ||
"isVisible": { | ||
"type": "boolean", | ||
"default": true, | ||
"description": "Show status bar at the bottom of the workspace" | ||
}, | ||
"fullWidth": { | ||
"order": 1, | ||
"type": "boolean", | ||
"default": true, | ||
"title": "Full-width", | ||
"description": "Fit the status-bar to the window's full-width" | ||
}, | ||
"cursorPositionFormat": { | ||
"order": 2, | ||
"type": "string", | ||
"default": "%L:%C", | ||
"description": "Format for the cursor position status bar element, where %L is the line number and %C is the column number" | ||
}, | ||
"selectionCountFormat": { | ||
"order": 2, | ||
"type": "string", | ||
"default": "(%L, %C)", | ||
"description": "Format for the selection count status bar element, where %L is the line count and %C is the character count" | ||
} | ||
}, | ||
"devDependencies": { | ||
"coffeelint": "^1.9.7", | ||
"coffeescript": "^1.12.7", | ||
"rollup": "^2.21.0", | ||
"rollup-plugin-atomic": "^1.2.0", | ||
"shx": "latest", | ||
"cross-env": "^7.0.2", | ||
"@babel/cli": "7.10.5", | ||
"@babel/core": "7.10.5", | ||
"babel-preset-atomic": "^1.0.7", | ||
"build-commit": "latest" | ||
} | ||
} |