vscode-emmet-helper/package.json

30 строки
758 B
JSON
Исходник Обычный вид История

2017-06-22 01:25:23 +03:00
{
"name": "vscode-emmet-helper",
2017-08-02 22:12:54 +03:00
"version": "1.0.9",
2017-06-22 01:25:23 +03:00
"description": "Helper to use emmet modules in Visual Studio Code",
2017-06-22 02:14:42 +03:00
"main": "./out/emmetHelper.js",
2017-06-22 01:25:23 +03:00
"author": "Microsoft Corporation",
"repository": {
"type": "git",
2017-06-30 05:08:04 +03:00
"url": "https://github.com/ramya-rao-a/vscode-emmet-helper"
2017-06-22 01:25:23 +03:00
},
"license": "MIT",
"bugs": {
2017-06-30 05:08:04 +03:00
"url": "https://github.com/ramya-rao-a/vscode-emmet-helper"
2017-06-22 01:25:23 +03:00
},
2017-06-22 02:14:42 +03:00
"devDependencies": {
"@types/node": "^6.0.46",
2017-07-21 04:03:44 +03:00
"typescript": "^2.1.5",
"mocha": "3.4.2"
2017-06-22 01:25:23 +03:00
},
"dependencies": {
"@emmetio/extract-abbreviation": "^0.1.1",
"vscode-languageserver-types": "^3.0.3"
2017-06-22 01:25:23 +03:00
},
"scripts": {
"prepublish": "tsc -p ./",
2017-07-21 04:03:44 +03:00
"compile": "tsc -watch -p ./",
"test": "mocha out/emmetHelperTest.js"
2017-06-22 01:25:23 +03:00
}
}