You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

95 lines
2.6 KiB

{
"name": "jekyll-post-file-generator",
"displayName": "Jekyll Utils",
"description": "A convenient way of creating new Jekyll post files",
"version": "0.0.1",
"license": "MIT",
"publisher": "stoutyhk",
"engines": {
"vscode": "^1.20.0"
},
"categories": [
"Other"
],
"icon": "images/icon.png",
"galleryBanner": {
"color": "#5c2d91",
"theme": "dark"
},
"bugs": {
"url": "https://bitbucket.org/stouty/vscode-jekyll-post-file-generator/admin/issues"
},
"repository": {
"type": "git",
"url": "https://stouty@bitbucket.org/stouty/vscode-jekyll-post-file-generator.git"
},
"homepage": "https://bitbucket.org/stouty/vscode-jekyll-post-file-generator/src",
"activationEvents": [
"onCommand:fileutils.newJekyllFile"
],
"main": "./out/src/extension",
"contributes": {
"commands": [
{
"command": "fileutils.newJekyllFile",
"category": "File",
"title": "New Jekyll Post File Relative to Current View"
}
],
"configuration": {
"type": "object",
"title": "Fileutils configuration",
"properties": {
"fileutils.delete.useTrash": {
"type": "boolean",
"default": false,
"description": "Move file to the recycle bin instead of deleting it permanently."
},
"fileutils.delete.confirm": {
"type": "boolean",
"default": true,
"description": "Controls if it should ask for confirmation when deleting a file."
}
}
}
},
"scripts": {
"vscode:prepublish": "./node_modules/.bin/tsc -p ./",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "npm run compile && node ./node_modules/vscode/bin/test",
"lint": "tslint -e './node_modules/**/*.ts' -e './typings/**/*.ts' './**/*.ts'",
"validate": "nsp check"
},
"devDependencies": {
"@types/bluebird-retry": "0.11.0",
"@types/chai": "^4.1.2",
"@types/mocha": "^2.2.48",
"@types/node": "^9.4.6",
"@types/sinon": "^4.1.3",
"@types/sinon-chai": "^2.7.29",
"bluebird-retry": "^0.11.0",
"chai": "^4.1.2",
"hoek": "^5.0.3",
"nsp": "^3.2.1",
"precommit-hook-eslint": "^3.0.0",
"sinon": "^4.4.2",
"sinon-chai": "^2.14.0",
"tslint": "^5.9.1",
"typescript": "^2.7.2",
"vscode": "^1.1.10"
},
"dependencies": {
"bluebird": "^3.5.1",
"fs-extra": "^5.0.0",
"trash": "^4.2.1",
"@types/fs-extra": "^5.0.0",
"@types/bluebird": "^3.5.20"
},
"pre-commit": [
"lint",
"validate",
"test"
]
}