{
  "name": "vscode-css-languageservice",
  "version": "3.0.10",
  "description": "Language service for CSS, LESS and SCSS",
  "main": "./lib/umd/cssLanguageService.js",
  "typings": "./lib/umd/cssLanguageService",
  "module": "./lib/esm/cssLanguageService.js",
  "author": "Microsoft Corporation",
  "repository": {
    "type": "git",
    "url": "https://github.com/Microsoft/vscode-css-languageservice"
  },
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/Microsoft/vscode-css-languageservice"
  },
  "devDependencies": {
    "@types/mocha": "^2.2.33",
    "@types/node": "^7.0.43",
    "istanbul": "^0.4.5",
    "mdn-browser-compat-data": "^0.0.45",
    "mdn-data": "^1.1.4",
    "mkdirp": "^0.5.1",
    "mocha": "^5.2.0",
    "rimraf": "^2.6.2",
    "tslint": "^5.11.0",
    "typescript": "^3.0.1",
    "xml2js": "^0.4.19"
  },
  "dependencies": {
    "vscode-languageserver-types": "^3.12.0",
    "vscode-nls": "^3.2.5"
  },
  "scripts": {
    "prepublishOnly": "npm run clean && npm run compile-esm && npm run test",
    "postpublish": "node ./build/post-publish.js",
    "compile": "tsc -p ./src",
    "compile-esm": "tsc -p ./src/tsconfig.esm.json",
    "clean": "rimraf lib",
    "watch": "tsc -w -p ./src",
    "test": "npm run compile && mocha && npm run lint",
    "coverage": "node ./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha -- --ui tdd -R spec -t 5000",
    "lint": "tslint src/**/*.ts",
    "update-data": "node ./build/generate_browserjs.js",
    "install-types-next": "yarn add vscode-languageserver-types@next",
    "preversion": "npm test",
    "postversion": "git push && git push --tags"
  }
}
