| 1234567891011121314151617181920212223242526272829303132333435363738 |
- {
- "name": "@growi/slack",
- "version": "0.9.0-RC",
- "license": "MIT",
- "main": "dist/index.js",
- "typings": "dist/index.d.ts",
- "scripts": {
- "build": "yarn tsc && tsc-alias -p tsconfig.build.json",
- "tsc": "tsc -p tsconfig.build.json",
- "tsc:w": "yarn tsc -w",
- "test": "yarn test:lint && yarn test:coverage",
- "test:unit": "cross-env NODE_ENV=test jest --passWithNoTests",
- "test:coverage": "yarn test:unit",
- "test:lint": "eslint src --ext .ts",
- "test:lint:fix": "eslint src --ext .ts --fix"
- },
- "dependencies": {
- "axios": "^0.21.1",
- "browser-bunyan": "^1.6.3",
- "bunyan": "^1.8.15",
- "dotenv-flow": "^3.2.0",
- "extensible-custom-error": "^0.0.7",
- "universal-bunyan": "^0.9.2"
- },
- "devDependencies": {
- "@types/express": "^4.17.11",
- "@types/jest": "^26.0.22",
- "@typescript-eslint/eslint-plugin": "^4.18.0",
- "@typescript-eslint/parser": "^4.18.0",
- "browser-bunyan": "^1.6.3",
- "cross-env": "^7.0.0",
- "eslint-import-resolver-typescript": "^2.4.0",
- "eslint-plugin-jest": "^24.3.2",
- "ts-jest": "^26.5.4",
- "tsc-alias": "^1.2.9",
- "typescript": "^4.2.3"
- }
- }
|