forked from basementuniverse/kanbn
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
61 lines (61 loc) · 1.32 KB
/
package.json
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
{
"name": "@samgiz/kanbn",
"version": "0.10.1",
"description": "A kanban board library",
"main": "index.js",
"scripts": {
"test": "KANBN_ENV=test qunit ./test/**/*.test.js"
},
"preferGlobal": true,
"bin": {
"kanbn": "bin/kanbn"
},
"author": "Gordon Larrigan <[email protected]> (https://gordonlarrigan.com)",
"contributors": [
{
"name": "Zigmas Bitinas (samgiz)",
"email": "[email protected]",
"url": "https://samgiz.com"
}
],
"homepage": "",
"repository": {
"type": "git",
"url": "git+https://github.com/samgiz/kanbn.git"
},
"engines": {
"node": ">=12.0.0"
},
"keywords": [
"kanbn",
"kanban",
"task manager",
"project manager",
"agile",
"scrum",
"sprint"
],
"license": "MIT",
"dependencies": {
"chrono-node": "^2.1.10",
"dateformat": "^4.3.1",
"front-matter": "^4.0.2",
"glob-promise": "^3.4.0",
"humanize-duration": "^3.25.0",
"jsonschema": "^1.4.0",
"marked": "^14.0.0",
"rimraf": "^3.0.2",
"yamljs": "^0.3.0"
},
"devDependencies": {
"@types/typescript": "^2.0.0",
"faker": "^5.1.0",
"mock-fs": "^4.13.0",
"mock-require": "^3.0.3",
"mock-stdin": "^1.0.0",
"mockdate": "^3.0.2",
"qunit": "^2.13.0",
"strip-ansi": "^6.0.0",
"typescript": "^4.9.3"
}
}