package.json 978 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "name": "code-editor-integration",
  3. "version": "1.0.0",
  4. "description": "",
  5. "main": "plugin.js",
  6. "scripts": {
  7. "prepublish": "npm run compile",
  8. "compile": "tsc -p ./",
  9. "lint": "eslint . --ext .ts",
  10. "watch": "tsc -watch -p ./",
  11. "pretest": "npm run compile && npm run lint",
  12. "start": "node ./out/plugin.js",
  13. "build": "npm run compile && npm run lint && npm run start",
  14. "test": "cross-env TS_NODE_FILES=true mocha --exit --require ts-node/register --colors src/test/**/*.ts"
  15. },
  16. "keywords": [],
  17. "author": "",
  18. "license": "ISC",
  19. "dependencies": {},
  20. "devDependencies": {
  21. "@types/chai": "^4.2.11",
  22. "@types/mocha": "^7.0.2",
  23. "@types/node": "^14.0.14",
  24. "@typescript-eslint/eslint-plugin": "^3.9.0",
  25. "@typescript-eslint/parser": "^3.4.0",
  26. "chai": "^4.2.0",
  27. "cross-env": "^5.2.0",
  28. "eslint": "^7.3.1",
  29. "mocha": "^10.1.0",
  30. "nyc": "^14.1.1",
  31. "ts-node": "^8.3.0",
  32. "typescript": "^3.5.3"
  33. }
  34. }