package.json 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. {
  2. "name": "vcat",
  3. "version": "0.1.1",
  4. "description": "Visual Code Assessment Tool",
  5. "main": "./dist/main.js",
  6. "scripts": {
  7. "build": "webpack --mode=development",
  8. "watch": "webpack --watch --mode=development",
  9. "compile": "webpack --mode=production",
  10. "publish": "npm run compile && npm pack",
  11. "test": "./node_modules/karma/bin/karma start"
  12. },
  13. "exports": {
  14. ".": "./main.js"
  15. },
  16. "files": [
  17. "dist/**/*.*"
  18. ],
  19. "repository": {
  20. "type": "git",
  21. "url": "git+http://200.144.254.107/git/LInE/vcat"
  22. },
  23. "keywords": [
  24. "programação",
  25. "ensino",
  26. "visual"
  27. ],
  28. "author": "LInE-IME/USP",
  29. "license": "MIT",
  30. "bugs": {
  31. "url": "http://200.144.254.107/git/LInE/vcat/issues"
  32. },
  33. "homepage": "http://200.144.254.107/git/LInE/vcat#readme",
  34. "devDependencies": {
  35. "@babel/core": "^7.10.2",
  36. "@babel/plugin-proposal-class-properties": "^7.18.6",
  37. "@babel/plugin-transform-runtime": "^7.10.1",
  38. "@babel/preset-env": "^7.10.2",
  39. "@babel/preset-typescript": "^7.10.1",
  40. "@babel/register": "^7.18.9",
  41. "@types/moo": "^0.5.5",
  42. "@typescript-eslint/eslint-plugin": "^5.7.0",
  43. "@typescript-eslint/parser": "^5.0.0",
  44. "babel-loader": "^8.0.6",
  45. "csv-parser": "^2.3.3",
  46. "eslint": "^8.5.0",
  47. "typescript": "^3.9.5",
  48. "webpack": "5.x",
  49. "webpack-cli": "5.x"
  50. },
  51. "dependencies": {
  52. "@babel/runtime": "^7.10.2",
  53. "decimal.js": "^10.2.0",
  54. "line-i18n": "git+http://200.144.254.107/git/LInE/line-i18n.git",
  55. "moo": "^0.5.1"
  56. }
  57. }