-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.42 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.42 KB
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "bit-docs-website",
"version": "0.0.1",
"description": "Website that documents bit-docs",
"keywords": [
"documentation",
"donejs",
"website"
],
"homepage": "https://github.com/bit-docs/website#readme",
"bugs": {
"url": "https://github.com/bit-docs/website/issues"
},
"license": "MIT",
"author": "Bitovi",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/bit-docs/website.git"
},
"scripts": {
"cache-bust": "npm run clean-dest && rm -rf ./node_modules/bit-docs/lib/configure/node_modules/bit-docs-generate-html/site/templates ./node_modules/bit-docs/lib/configure/node_modules/bit-docs-generate-html/site/static",
"clean-dest": "rm -rf ${npm_package_bit_docs_dest:-./doc}",
"bit-docs": "bit-docs",
"gen": "bit-docs -d",
"genf": "bit-docs -df",
"gh-pages": "gh-pages -d gh-pages",
"postinstall": "[ -d docs/modules/node_modules ] || npm run install-modules",
"install-modules": "npm install --prefix docs/modules",
"pub": "npm run gh-pages && echo '↳ <https://bit-docs.github.io/bit-docs-website>'",
"see": "http-server -a localhost -p 8080 -c-1 gh-pages",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"bit-docs": "pre",
"gh-pages": "^0.12.0"
},
"bit-docs": {
"js": {
"extensions": [
"js",
"less"
]
},
"dependencies": {
"bit-docs-dev": "pre",
"bit-docs-generate-html": "pre",
"bit-docs-glob-finder": "pre",
"bit-docs-html-toc": "pre",
"bit-docs-js": "pre",
"bit-docs-prettify": "pre",
"bit-docs-html-highlight-line": "pre",
"bit-docs-process-mustache": "pre",
"bit-docs-tag-demo": "pre",
"bit-docs-tag-sourceref": "pre"
},
"glob": {
"pattern": "docs/**/bit-docs*/**/*.{js,md,mustache,less}",
"ignore": [
"**/README.md",
"**/LICENSE.md",
"**/CONTRIBUTING.md",
"**/test/**/*",
"**/*_test.js",
"**/test_*.js",
"**/test-*.md",
"**/test.js",
"docs/modules/node_modules/**/node_modules/**/*",
"docs/modules/node_modules/bit-docs-generate-html/site/{static,templates}/**/*",
"docs/modules/node_modules/bit-docs-prettify/temp/**/*",
"**/templates/**/*.mustache"
],
"follow": true
},
"parent": "BitDocs",
"minifyBuild": false,
"dest": "./gh-pages"
}
}