-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
41 lines (41 loc) · 963 Bytes
/
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
{
"name": "wbs-markdown",
"version": "1.1.4",
"description": "Work Breakdown Structure (WBS) in markdown format for software development projects.",
"main": "index.js",
"engines": {
"node": ">=6.11"
},
"preferGlobal": true,
"bin": {
"wbsm": "./lib/wbsm.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": "git://github.com/brainlid/wbs_markdown.git",
"keywords": [
"wbs",
"work",
"breakdown",
"structure",
"markdown",
"estimate",
"estimating",
"software-development",
"development"
],
"author": "Mark Ericksen <[email protected]> (https://brainlid.org)",
"license": "ISC",
"dependencies": {
"chokidar": "^2.0.3",
"commander": "^2.11.0",
"lodash": "^4.17.15",
"markdown-it": "^8.4.0",
"markdown-it-attrs": "^1.1.0",
"markdown-it-source-map": "^0.1.1",
"md5": "^2.2.1",
"opn": "^5.4.0"
},
"private": false
}