UNPKG

1.56 kBJSONView Raw
1{
2 "name": "tempo-summary-email",
3 "version": "0.5.2",
4 "description": "Generates a daily email for work completed in jira, using Tempo and Jira api's",
5 "main": "lib/tempo-summary-email.js",
6 "types": "lib/tempo-summary-email.d.ts",
7 "files": [
8 "lib/**/*"
9 ],
10 "scripts": {
11 "build": "tsc",
12 "watch": "tsc --watch",
13 "eslint": "eslint --ext .ts 'src/**/*.ts' 'tests/**/*.ts'",
14 "esfix": "eslint --ext .ts --fix 'src/**/*.ts' 'tests/**/*.ts'",
15 "test": "jest --config jestconfig.json",
16 "coverage": "jest --coverage --config jestconfig.json",
17 "prepublishOnly": "npm test && npm run eslint",
18 "preversion": "npm run eslint",
19 "version": "git add -A src",
20 "postversion": "git push && git push --tags"
21 },
22 "repository": {
23 "type": "git",
24 "url": "https://github.com/lewis785/tempo-summary-email.git"
25 },
26 "keywords": [
27 "Tempo",
28 "Jira"
29 ],
30 "author": "Lewis McNeill",
31 "license": "MIT",
32 "bugs": {
33 "url": "https://github.com/lewis785/tempo-summary-email/issues"
34 },
35 "homepage": "https://github.com/lewis785/tempo-summary-email#readme",
36 "dependencies": {
37 "jira-client": "^6.14.0",
38 "tempo-client": "^3.0.1"
39 },
40 "devDependencies": {
41 "@types/jest": "^24.9.1",
42 "@types/jira-client": "^6.13.1",
43 "@types/request-promise": "^4.1.45",
44 "@typescript-eslint/eslint-plugin": "^2.18.0",
45 "@typescript-eslint/parser": "^2.18.0",
46 "eslint": "^6.8.0",
47 "jest": "^24.9.0",
48 "jest-mock-extended": "^1.0.7",
49 "ts-jest": "^24.3.0",
50 "typescript": "^3.7.5"
51 }
52}