package.json 1003 B

12345678910111213141516171819202122232425262728
  1. {
  2. "name": "vscode-languageserver-textdocument",
  3. "description": "A simple text document implementation for Node LSP servers",
  4. "version": "1.0.1",
  5. "author": "Microsoft Corporation",
  6. "license": "MIT",
  7. "repository": {
  8. "type": "git",
  9. "url": "https://github.com/Microsoft/vscode-languageserver-node.git",
  10. "directory": "textDocument"
  11. },
  12. "bugs": {
  13. "url": "https://github.com/Microsoft/vscode-languageserver-node/issues"
  14. },
  15. "main": "./lib/umd/main.js",
  16. "typings": "./lib/umd/main",
  17. "module": "./lib/esm/main.js",
  18. "scripts": {
  19. "prepublishOnly": "npm run clean && npm run compile-esm && npm run compile && npm run test",
  20. "postpublish": "node ../build/npm/post-publish.js",
  21. "compile": "node ../build/bin/tsc -b ./tsconfig.json",
  22. "compile-esm": "node ../build/bin/tsc -b ./tsconfig.esm.json",
  23. "clean": "node ../node_modules/rimraf/bin.js lib",
  24. "watch": "node ../build/bin/tsc -b ./tsconfig.json -w",
  25. "test": "node ../node_modules/mocha/bin/_mocha",
  26. "preversion": "npm test"
  27. }
  28. }