vscode-emmet-helper/package.json

34 строки
968 B
JSON

{
"name": "vscode-emmet-helper",
"version": "1.2.1",
"description": "Helper to use emmet modules in Visual Studio Code",
"main": "./out/emmetHelper.js",
"types": "./out/emmetHelper.d.ts",
"author": "Microsoft Corporation",
"repository": {
"type": "git",
"url": "https://github.com/Microsoft/vscode-emmet-helper"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/Microsoft/vscode-emmet-helper"
},
"devDependencies": {
"@types/node": "^6.0.46",
"typescript": "^2.1.5",
"mocha": "3.4.2",
"cpy-cli": "^1.0.1"
},
"dependencies": {
"@emmetio/extract-abbreviation": "0.1.6",
"jsonc-parser": "^1.0.0",
"vscode-languageserver-types": "^3.6.0-next.1"
},
"scripts": {
"prepublish": "npm run compile && npm run test",
"watch": "tsc -watch -p ./",
"compile": "tsc -p ./ && cpy ./src/expand/*.js ./out/expand && cpy ./src/typings/emmetHelper.d.ts ./out",
"test": "mocha out/test"
}
}