mirror of
https://github.com/pulsar-edit/pulsar.git
synced 2024-11-10 10:17:11 +03:00
32 lines
574 B
JSON
32 lines
574 B
JSON
{
|
|
"name": "go-to-line",
|
|
"version": "0.33.0",
|
|
"main": "./lib/go-to-line-view",
|
|
"description": "Jump to a specific editor line number with `ctrl-g`.",
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"lint": "standard"
|
|
},
|
|
"activationCommands": {
|
|
"atom-text-editor": [
|
|
"go-to-line:toggle"
|
|
]
|
|
},
|
|
"repository": "https://github.com/atom/atom",
|
|
"engines": {
|
|
"atom": "*"
|
|
},
|
|
"devDependencies": {
|
|
"standard": "^8.6.0"
|
|
},
|
|
"standard": {
|
|
"globals": [
|
|
"atom",
|
|
"waitsForPromise"
|
|
],
|
|
"ignore": [
|
|
"spec/fixtures"
|
|
]
|
|
}
|
|
}
|