atom-beautify/package.json

164 lines
3.5 KiB
JSON
Raw Normal View History

{
2015-06-01 15:29:06 -06:00
"name": "atom-beautify",
"main": "./src/beautify",
2015-09-22 14:20:45 -06:00
"version": "0.28.13",
2015-06-01 15:29:06 -06:00
"private": true,
"description": "Beautify HTML, CSS, JavaScript, PHP, Python, Ruby, Java, C, C++, C#, Objective-C, CoffeeScript, TypeScript, and SQL in Atom",
"repository": {
"type": "git",
"url": "https://github.com/Glavin001/atom-beautify"
},
"bugs": {
"url": "https://github.com/Glavin001/atom-beautify/issues"
},
"license": "MIT",
"author": {
"name": "Glavin Wiechert",
"email": "glavin.wiechert@gmail.com",
"url": "https://github.com/Glavin001"
},
"contributors": [
{
"name": "Donald Pipowitch",
"email": "pipo@senaeh.de",
"url": "https://github.com/donaldpipowitch"
2014-09-17 22:58:19 -06:00
},
2015-06-01 15:29:06 -06:00
{
"name": "László Károlyi",
"url": "https://github.com/karolyi"
2014-09-17 22:58:19 -06:00
},
2015-06-01 15:29:06 -06:00
{
"name": "Marco Tanzi",
"url": "https://github.com/mtanzi"
2014-09-17 22:58:19 -06:00
},
2015-06-01 15:29:06 -06:00
{
"name": "gvn lazar suntop",
"url": "https://github.com/gvn"
2014-09-17 22:58:19 -06:00
},
2015-06-01 15:29:06 -06:00
{
"name": "Vadim K.",
"url": "https://github.com/vadirn"
2015-03-07 14:21:28 -07:00
},
2015-06-01 15:29:06 -06:00
{
"name": "Filipe Silva",
"url": "https://github.com/filipesilva"
},
2015-06-01 15:29:06 -06:00
{
"name": "Ramón Cahenzli",
"url": "https://github.com/psy-q"
},
{
"name": "Clemens Damke",
"url": "https://github.com/Cortys"
}
2015-06-01 15:29:06 -06:00
],
"engines": {
"atom": ">=0.174.0 <2.0.0"
},
"dependencies": {
"analytics-node": "^1.2.2",
2015-06-10 10:56:41 -06:00
"async": "^1.2.1",
2015-06-01 15:29:06 -06:00
"atom-message-panel": "^1.2.4",
"atom-space-pen-views": "^2.0.5",
2015-06-25 06:06:05 -06:00
"bluebird": "^2.9.30",
2015-06-10 10:56:41 -06:00
"coffee-fmt": "0.11.0",
2015-06-01 15:29:06 -06:00
"coffee-formatter": "^0.1.2",
2015-09-05 06:13:15 -06:00
"cross-spawn": "^2.0.0",
2015-06-10 10:56:41 -06:00
"csscomb": "^3.1.7",
2015-09-05 06:13:15 -06:00
"diff": "^2.1.0",
2015-06-01 15:29:06 -06:00
"editorconfig": "^0.12.2",
"emissary": "^1.3.3",
"event-kit": "^1.2.0",
"expand-home-dir": "0.0.2",
2015-09-05 06:13:15 -06:00
"extend": "^3.0.0",
"gherkin": "2.12.2",
2015-09-05 06:13:15 -06:00
"handlebars": "^4.0.2",
2015-06-25 06:06:05 -06:00
"js-beautify": "^1.5.7",
2015-09-05 06:13:15 -06:00
"jscs": "^2.1.1",
"lodash": "3.10.1",
2015-06-01 15:29:06 -06:00
"loophole": "^1.0.0",
"node-dir": "^0.1.8",
"node-uuid": "^1.4.3",
"prettydiff": "^1.12.19",
2015-06-01 15:29:06 -06:00
"space-pen": "^5.1.1",
"strip-json-comments": "^1.0.2",
2015-06-10 10:56:41 -06:00
"temp": "^0.8.3",
2015-06-01 15:29:06 -06:00
"tidy-markdown": "^0.3.2",
"typescript-formatter": "~0.3.2",
"underscore-plus": "^1.6.6",
"which": "^1.1.1",
2015-06-01 15:29:06 -06:00
"winston": "^1.0.0",
"yaml-front-matter": "^3.2.3"
},
"activationCommands": {
"atom-workspace": [
"atom-beautify:help-debug-editor",
"atom-beautify:beautify-editor",
"core:save",
"core:save-as"
],
".tree-view .file .name": [
"atom-beautify:beautify-file"
],
".tree-view .directory .name": [
"atom-beautify:beautify-directory"
]
},
"keywords": [
"atom",
"beautify",
"beautifier",
"js-beautify",
"format",
"pretty",
"html",
"handlebars",
"mustache",
"xml",
"css",
"javascript",
"json",
"css",
"sass",
"scss",
"less",
"sql",
"markdown",
"php",
"python",
"ruby",
"coffeescript",
"typescript",
"c",
"c++",
"cpp",
"objective-c",
"c-sharp",
"c#",
"uncrustify",
"java",
"pawn",
"vala",
"d",
"erb",
"editorconfig",
"yaml",
"front matter",
"jekyll",
"marko",
"go",
2015-07-06 17:26:40 -06:00
"golang",
"svg"
2015-06-01 15:29:06 -06:00
],
"devDependencies": {
"coffee-script": "^1.9.3",
"coffeelint": "^1.10.1",
2015-09-05 06:13:15 -06:00
"handlebars": "^4.0.2"
2015-06-01 15:29:06 -06:00
},
"scripts": {
"prepublish": "npm run docs",
"docs": "coffee docs/",
"lint": "coffeelint src/ spec/"
2015-06-01 15:29:06 -06:00
}
}