forked from SAP-archive/docpad-skeleton-apidocs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.7 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
{
"name": "simepleapidocsskeleton",
"version": "0.0.1",
"description": "Boilerplate for your API documentation",
"homepage": "https://yaas.io",
"license": "Apache 2.0",
"keywords": [],
"author": "SAP Hybris",
"maintainers": [
"maintainers"
],
"contributors": [
"contributors"
],
"bugs": {
"url": ""
},
"repository": {
"type": "",
"url": ""
},
"engines": {
"node": "5",
"npm": "3.3.10"
},
"dependencies": {
"async": "^1.5.2",
"bower": "^1.7.9",
"cpy-cli": "^1.0.1",
"del-cli": "^0.2.0",
"docpad": "~6.78.4",
"docpad-plugin-babel": "2.2.1",
"docpad-plugin-coffeescript": "~2.5.0",
"docpad-plugin-eco": "~2.1.0",
"docpad-plugin-functions": "git+https://github.com/sdomagala/docpad-plugin-functions.git",
"docpad-plugin-highlightjs": "~2.3.0",
"docpad-plugin-less": "https://github.com/sdomagala/docpad-plugin-less.git#compiled",
"docpad-plugin-marked": "~2.3.0",
"docpad-plugin-raw": "~2.4.1",
"docpad-plugin-text": "~2.3.3",
"docpad-plugin-winston": "~2.0.0",
"gulp-download": "0.0.1",
"gulp-unzip": "^0.1.4",
"path": "^0.12.7"
},
"devDependencies": {
"babel-core": "^6.4.5",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.11.1",
"chewie": "https://github.com/hybris/chewie.git",
"config": "^1.19.0",
"express": "4.13.4",
"gulp": "^3.9.0",
"yargs": "^4.2.0"
},
"main": "node_modules/docpad/bin/docpad-server",
"scripts": {
"install-deps": "npm install && npm run bower",
"bower": "bower install -f",
"update": "gulp clean && git pull && del-cli node_modules src/raw/bower_components -f && npm run install-deps",
"copy:modernizr": "cpy ./src/raw/bower_components/modernizr/modernizr.js ./src/raw/scripts/general/",
"copy:zeroclipboard": "cpy ./src/raw/bower_components/zeroclipboard/dist/ZeroClipboard.js ./src/raw/scripts/general/ && cpy ./src/raw/bower_components/zeroclipboard/dist/ZeroClipboard.swf ./src/raw/scripts/ && cpy ./src/raw/bower_components/zeroclipboard/dist/ZeroClipboard.swf ./src/raw/scripts/general/ && cpy ./src/raw/bower_components/zeroclipboard/dist/ZeroClipboard.min.map ./src/raw/scripts/",
"clean": "gulp clean",
"init": "gulp clean && gulp start",
"build:lunrplugin": "npm install --prefix ./plugins/docpad-plugin-lunr",
"prepare": "npm run install-deps && npm run copy:modernizr && npm run copy:zeroclipboard && npm run build:lunrplugin && gulp getDependencyInteractiveDocu",
"compile": "node --max-old-space-size=8192 --max-semi-space-size=512 --nouse-idle-notification node_modules/docpad/out/bin/docpad-compile.js && gulp minify",
"start": "del-cli out -f && npm run compile && node server.js"
}
}