30 строки
758 B
JSON
30 строки
758 B
JSON
{
|
|
"name": "vscode-emmet-helper",
|
|
"version": "1.0.8",
|
|
"description": "Helper to use emmet modules in Visual Studio Code",
|
|
"main": "./out/emmetHelper.js",
|
|
"author": "Microsoft Corporation",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/ramya-rao-a/vscode-emmet-helper"
|
|
},
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/ramya-rao-a/vscode-emmet-helper"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^6.0.46",
|
|
"typescript": "^2.1.5",
|
|
"mocha": "3.4.2"
|
|
},
|
|
"dependencies": {
|
|
"@emmetio/extract-abbreviation": "^0.1.1",
|
|
"vscode-languageserver-types": "^3.0.3"
|
|
},
|
|
"scripts": {
|
|
"prepublish": "tsc -p ./",
|
|
"compile": "tsc -watch -p ./",
|
|
"test": "mocha out/emmetHelperTest.js"
|
|
}
|
|
}
|