This repository has been archived by the owner on Jul 31, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
78 lines (78 loc) · 3.22 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
{
"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",
"yamljs": "~0.2.1"
},
"devDependencies": {
"babel-core": "^6.4.5",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.11.1",
"chewie": "^0.1.3",
"config": "^1.19.0",
"express": "4.13.4",
"gulp": "^3.9.0",
"gulp-json-transform": "^0.3.0",
"gulp-nightwatch": "^0.2.7",
"yargs": "^4.2.0"
},
"main": "node_modules/docpad/bin/docpad-server",
"scripts": {
"install-deps": "npm install && npm run bower",
"bower": "bower install -f --allow-root",
"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",
"preparePushResult": "gulp preparePushResult",
"pushResult": "gulp pushResult && gulp backupResultInS3",
"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 && del-cli src/raw/bower_components/list.js/docs",
"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",
"prepare-deploy": "del-cli out -f && DEPLOY=true npm run compile && gulp fixLinks && gulp prepareInteractiveDocuToDeploy",
"test": "gulp test",
"test:ui": "NODE_CONFIG_DIR=./tests/config gulp test -b chrome --sauce && NODE_CONFIG_DIR=./tests/config gulp test -b firefox --sauce"
}
}