forked from larsvanbraam/block-documentation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.02 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
{
"name": "block-documentation",
"version": "0.2.0",
"description": "Module that reads Typescript interfaces and outputs documentation for backend API's",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/larsvanbraam/block-documentation.git"
},
"scripts": {
"example": "node ./example/index.js",
"test": "mocha -R list"
},
"keywords": [
"Typescript",
"Typhen",
"Interfaces",
"Documentation"
],
"author": "Lars van Braam <[email protected]> (https://github.com/larsvanbraam)",
"license": "MIT",
"bugs": {
"url": "https://github.com/larsvanbraam/block-documentation/issues"
},
"homepage": "https://github.com/larsvanbraam/block-documentation#readme",
"dependencies": {
"camelcase": "^4.0.0",
"fs-extra": "^2.0.0",
"strip-extension": "^1.1.0",
"typhen": "^1.0.1",
"uppercamelcase": "^1.1.0"
},
"devDependencies": {
"chai": "^3.5.0",
"grunt": "^1.0.1",
"mocha": "^3.2.0",
"node-http-server": "^6.2.1"
}
}