-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
59 lines (59 loc) · 1.68 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
{
"name": "knockout-component-documentor",
"version": "1.0.0",
"description": "A Knockout.js component to document your Knockout components.",
"main": "index.js",
"directories": {
"example": "example"
},
"scripts": {
"start": "webpack --config webpack.config.js",
"document-components": "jsdoc2md --configure ./jsdoc2md.json --files js/* --json > jsdocs.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SamKirkland/Knockout-Component-Documentor.git"
},
"keywords": [
"knockout",
"component",
"documentation",
"auto",
"documenter"
],
"author": "Sam Kirkland",
"license": "ISC",
"bugs": {
"url": "https://github.com/SamKirkland/Knockout-Component-Documentor/issues"
},
"homepage": "https://github.com/SamKirkland/Knockout-Component-Documentor#readme",
"dependencies": {
"jsdoc-to-markdown": "5.0.3"
},
"devDependencies": {
"clipboard": "2.0.4",
"codemirror": "5.50.2",
"css-loader": "3.4.1",
"node-sass": "4.13.0",
"sass-loader": "8.0.0",
"style-loader": "1.1.2",
"html-loader": "0.5.5",
"jsdoc-babel": "0.5.0",
"webpack": "4.41.5",
"webpack-cli": "3.3.10",
"webpack-shell-plugin": "0.5.0",
"typescript": "3.7.4",
"ts-loader": "6.2.1",
"@babel/cli": "7.7.7",
"@babel/core": "7.7.7",
"@babel/preset-env": "7.7.7",
"@babel/preset-typescript": "7.7.7",
"@babel/plugin-proposal-class-properties": "7.7.4",
"@babel/plugin-proposal-object-rest-spread": "7.7.7",
"@types/codemirror": "0.0.82",
"@types/jsdoc-to-markdown": "4.0.0",
"@types/clipboard": "2.0.1",
"@types/webpack": "4.41.1",
"@types/knockout": "3.4.66"
}
}