Skip to content
This repository has been archived by the owner on Dec 15, 2022. It is now read-only.

Commit

Permalink
Merge branch 'master' into rollup
Browse files Browse the repository at this point in the history
  • Loading branch information
aminya authored Aug 29, 2020
2 parents 5c87cf2 + 1bf4e13 commit 156c0c8
Showing 1 changed file with 72 additions and 72 deletions.
144 changes: 72 additions & 72 deletions package.json
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"
}
}

0 comments on commit 156c0c8

Please sign in to comment.