-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.3 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "jeff-at-aha.development-timeline",
"description": "Development timeline",
"version": "0.3.4",
"author": "Jeff Tucker <support@aha.io>",
"repository": {
"type": "git",
"url": "https://github.com/trydionel/estimation-analysis"
},
"license": "UNLICENSED",
"private": true,
"devDependencies": {
"@types/react": "^16.8.0"
},
"ahaExtension": {
"contributes": {
"views": {
"projectedDuration": {
"title": "Timeline",
"entryPoint": "src/views/projectedDuration.js",
"host": "attribute",
"recordTypes": [
"Epic",
"Feature",
"Requirement",
"Release"
]
}
},
"settings": {
"estimateUncertainty": {
"title": "Estimate uncertainty",
"description": "A measure of how much inaccuracy to allow for during estimation (0-100%)",
"default": "25",
"type": "number",
"scope": [
"account"
]
},
"fancyMath": {
"title": "Use advanced techniques",
"description": "Whether to enable advanced mathematical models for projecting completion dates",
"default": false,
"type": "boolean",
"scope": [
"account"
]
},
"defaultEstimate": {
"title": "Default estimate",
"description": "Estimate value to use when no estimate is provided",
"default": 1,
"type": "number",
"scope": [
"account"
]
},
"totalAssignees": {
"title": "Total assignees",
"description": "How many developers will take on the work",
"default": 1,
"type": "number",
"scope": [
"account"
]
},
"defaultVelocity": {
"title": "Default velocity",
"description": "Default velocity in points per person per day",
"default": 0.1,
"type": "number",
"scope": [
"account"
]
}
}
}
},
"dependencies": {
"@stdlib/random-base-lognormal": "^0.0.6",
"@stdlib/stats-base-dists-lognormal": "^0.0.7",
"date-fns": "^2.29.3",
"lodash": "^4.17.21",
"use-deep-compare-effect": "^1.8.1"
}
}