vscode-emmet-helper/package.json

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

2017-06-22 01:25:23 +03:00
{
"name": "vscode-emmet-helper",
2017-12-19 21:23:07 +03:00
"version": "1.1.20",
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": {
"@emmetio/extract-abbreviation": "^0.1.1",
"vscode-languageserver-types": "^3.0.3"
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 ./",
"compile": "tsc -p ./ && cpy ./src/expand/*.js ./out/expand",
"test": "mocha out/test"
2017-06-22 01:25:23 +03:00
}
}