vscode-emmet-helper/package.json

34 строки
968 B
JSON
Исходник Постоянная ссылка Обычный вид История

2017-06-22 01:25:23 +03:00
{
"name": "vscode-emmet-helper",
2018-03-09 03:58:24 +03:00
"version": "1.2.1",
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-07-27 18:39:30 +03:00
"types": "./out/emmetHelper.d.ts",
2017-06-22 01:25:23 +03:00
"author": "Microsoft Corporation",
"repository": {
"type": "git",
2017-08-02 23:31:30 +03:00
"url": "https://github.com/Microsoft/vscode-emmet-helper"
2017-06-22 01:25:23 +03:00
},
"license": "MIT",
"bugs": {
2017-08-02 23:31:30 +03:00
"url": "https://github.com/Microsoft/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",
"cpy-cli": "^1.0.1"
2017-06-22 01:25:23 +03:00
},
"dependencies": {
2018-02-27 01:53:50 +03:00
"@emmetio/extract-abbreviation": "0.1.6",
"jsonc-parser": "^1.0.0",
2018-02-13 06:40:28 +03:00
"vscode-languageserver-types": "^3.6.0-next.1"
2017-06-22 01:25:23 +03:00
},
"scripts": {
"prepublish": "npm run compile && npm run test",
2018-01-18 22:47:14 +03:00
"watch": "tsc -watch -p ./",
2018-02-08 05:01:34 +03:00
"compile": "tsc -p ./ && cpy ./src/expand/*.js ./out/expand && cpy ./src/typings/emmetHelper.d.ts ./out",
"test": "mocha out/test"
2017-06-22 01:25:23 +03:00
}
}