-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.16 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
{
"name": "@jesterxl/hm-doc",
"version": "1.2.0",
"description": "Generates simple markdown documentation from Hindley Milner and optional block comments in JavaScript code.",
"main": "index.js",
"scripts": {
"lint": "eslint index.js",
"test": "jest",
"coverage": "jest --coverage",
"build-docs": "npx hm-doc -f index.js -t README_template.hbs > _api.md"
},
"bin": {
"hm-doc": "./bin/hm-doc.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JesterXL/hm-doc.git"
},
"keywords": [
"hm",
"hindley",
"milner",
"documentation",
"jsdoc",
"javascript",
"node"
],
"author": "Jesse Warden",
"license": "MIT",
"bugs": {
"url": "https://github.com/JesterXL/hm-doc/issues"
},
"homepage": "https://github.com/JesterXL/hm-doc#readme",
"dependencies": {
"babylon": "^6.18.0",
"commander": "^2.19.0",
"debug": "^4.1.0",
"glob": "^7.1.3",
"handlebars": "^4.0.12",
"hm-parser": "^0.1.5",
"lodash": "^4.17.11",
"supports-color": "^5.5.0"
},
"devDependencies": {
"eslint": "^5.9.0",
"eslint-plugin-fp-jxl": "^1.2.1",
"jest": "^23.6.0"
}
}