{
  "name": "vscode-emmet-helper",
  "version": "2.6.4",
  "description": "Helper to use emmet modules in Visual Studio Code",
  "main": "./lib/cjs/emmetHelper.js",
  "module": "./lib/esm/emmetHelper.js",
  "types": "./lib/cjs/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/mocha": "^8.2.2",
    "@types/node": "^12.11.7",
    "cpy-cli": "^3.1.1",
    "mocha": "^8.1.1",
    "rimraf": "^3.0.2",
    "typescript": "^3.9.7"
  },
  "dependencies": {
    "emmet": "^2.3.0",
    "jsonc-parser": "^2.3.0",
    "vscode-languageserver-textdocument": "^1.0.1",
    "vscode-languageserver-types": "^3.15.1",
    "vscode-nls": "^5.0.0",
    "vscode-uri": "^2.1.2"
  },
  "scripts": {
    "prepublishOnly": "npm run clean && yarn && npm run compile && npm run compile-esm && npm run test",
    "watch": "tsc -watch -p ./",
    "compile": "tsc -p ./",
    "clean": "rimraf lib",
    "compile-esm": "tsc -p ./tsconfig.esm.json",
    "test": "mocha lib/cjs/test",
    "preversion": "npm test",
    "postversion": "git push && git push --tags"
  }
}
