-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
79 lines (79 loc) · 2.63 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
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",
"gsd": "git diff --submodule",
"gsl": "git log --graph --oneline -U0 --submodule | grep -E '^[*| /\\]+([0-9a-f]{7} |Submodule |> |$)'",
"gsu": "git submodule update --remote --merge",
"preinstall": "[ -f docs/modules/bit-docs/package.json ] || git submodule update --init",
"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": "bit-docs/bit-docs",
"gh-pages": "^0.12.0"
},
"bit-docs": {
"js": {
"extensions": [
"js",
"less"
]
},
"dependencies": {
"bit-docs-dev": "bit-docs/bit-docs-dev",
"bit-docs-generate-html": "bit-docs/bit-docs-generate-html",
"bit-docs-glob-finder": "bit-docs/bit-docs-glob-finder",
"bit-docs-html-toc": "bit-docs/bit-docs-html-toc",
"bit-docs-js": "bit-docs/bit-docs-js",
"bit-docs-prettify": "bit-docs/bit-docs-prettify",
"bit-docs-html-highlight-line": "bit-docs/bit-docs-html-highlight-line",
"bit-docs-process-mustache": "bit-docs/bit-docs-process-mustache",
"bit-docs-tag-demo": "bit-docs/bit-docs-tag-demo",
"bit-docs-tag-sourceref": "bit-docs/bit-docs-tag-sourceref"
},
"glob": {
"pattern": "docs/**/*.{js,md,mustache,less}",
"ignore": [
"**/README.md",
"**/LICENSE.md",
"**/CONTRIBUTING.md",
"**/test/**/*",
"**/*_test.js",
"**/test_*.js",
"**/test-*.md",
"**/test.js",
"**/node_modules/**/*",
"**/templates/**/*.mustache"
],
"follow": true
},
"parent": "BitDocs",
"minifyBuild": false,
"dest": "./gh-pages"
}
}