package.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "name": "@growi/slack",
  3. "version": "0.9.0-RC",
  4. "license": "MIT",
  5. "main": "dist/index.js",
  6. "typings": "dist/index.d.ts",
  7. "scripts": {
  8. "build": "yarn tsc && tsc-alias -p tsconfig.build.json",
  9. "tsc": "tsc -p tsconfig.build.json",
  10. "tsc:w": "yarn tsc -w",
  11. "test": "yarn test:lint && yarn test:coverage",
  12. "test:unit": "cross-env NODE_ENV=test jest --passWithNoTests",
  13. "test:coverage": "yarn test:unit",
  14. "test:lint": "eslint src --ext .ts",
  15. "test:lint:fix": "eslint src --ext .ts --fix"
  16. },
  17. "dependencies": {
  18. "axios": "^0.21.1",
  19. "browser-bunyan": "^1.6.3",
  20. "bunyan": "^1.8.15",
  21. "dotenv-flow": "^3.2.0",
  22. "universal-bunyan": "^0.9.2"
  23. },
  24. "devDependencies": {
  25. "@types/express": "^4.17.11",
  26. "@types/jest": "^26.0.22",
  27. "@typescript-eslint/eslint-plugin": "^4.18.0",
  28. "@typescript-eslint/parser": "^4.18.0",
  29. "browser-bunyan": "^1.6.3",
  30. "cross-env": "^7.0.0",
  31. "eslint-import-resolver-typescript": "^2.4.0",
  32. "eslint-plugin-jest": "^24.3.2",
  33. "ts-jest": "^26.5.4",
  34. "tsc-alias": "^1.2.9",
  35. "typescript": "^4.2.3"
  36. }
  37. }