mirror of
https://github.com/atom/atom.git
synced 2026-01-14 09:27:57 -05:00
54 lines
1.2 KiB
JSON
54 lines
1.2 KiB
JSON
{
|
|
"name": "welcome",
|
|
"version": "0.36.9",
|
|
"description": "Welcome users to Atom with useful information",
|
|
"main": "./lib/main",
|
|
"atomTestRunner": "atom-mocha-test-runner",
|
|
"repository": "https://github.com/atom/atom",
|
|
"license": "MIT",
|
|
"engines": {
|
|
"atom": ">0.50.0"
|
|
},
|
|
"scripts": {
|
|
"lint": "standard",
|
|
"test": "atom --test test/*.test.js"
|
|
},
|
|
"consumedServices": {
|
|
"metrics-reporter": {
|
|
"versions": {
|
|
"^1.1.0": "consumeReporter"
|
|
}
|
|
}
|
|
},
|
|
"configSchema": {
|
|
"showOnStartup": {
|
|
"type": "boolean",
|
|
"default": true,
|
|
"description": "Show welcome panes with useful information when opening a new Atom window."
|
|
},
|
|
"showSunsettingOnStartup": {
|
|
"type": "boolean",
|
|
"default": true,
|
|
"description": "Show sunsetting pane when opening a new Atom window."
|
|
}
|
|
},
|
|
"deserializers": {
|
|
"WelcomeView": "createWelcomeView",
|
|
"GuideView": "createGuideView",
|
|
"ConsentView": "createConsentView",
|
|
"SunsettingView": "createSunsettingView"
|
|
},
|
|
"dependencies": {
|
|
"etch": "0.9.0"
|
|
},
|
|
"devDependencies": {
|
|
"atom-mocha-test-runner": "^1.0.0",
|
|
"standard": "^8.6.0"
|
|
},
|
|
"standard": {
|
|
"globals": [
|
|
"atom"
|
|
]
|
|
}
|
|
}
|