forked from sdelements/node-slate
-
Notifications
You must be signed in to change notification settings - Fork 89
/
package.json
89 lines (89 loc) · 2.28 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
80
81
82
83
84
85
86
87
88
89
{
"name": "node-slate",
"version": "3.2.0",
"description": "Node port of lord/slate",
"license": "Apache-2.0",
"type": "module",
"browser": "build/1-dev/index.html",
"repository": {
"type": "git",
"url": "git+https://github.com/center-key/node-slate.git"
},
"homepage": "https://node-slate.js.org",
"bugs": "https://github.com/center-key/node-slate/issues",
"docs": "https://github.com/center-key/node-slate#readme",
"author": "Various",
"keywords": [
"api-documentation",
"api",
"nodejs",
"slate",
"static-site-generator"
],
"jshintConfig": {
"esversion": 11,
"strict": "implied",
"eqeqeq": true,
"node": true,
"undef": true,
"unused": true
},
"runScriptsConfig": {
"build": [
"rimraf build",
"gulp build",
"gulp lint",
"html-validator build/1-dev",
"rev-web-assets build/2-min build/3-rev"
],
"show-paths": [
"gulp show-paths"
],
"run-server": [
"gulp serve"
]
},
"scripts": {
"build": "run-scripts build show-paths",
"build-quiet": "run-scripts build",
"start": "run-scripts build show-paths run-server",
"deploy": "deploy.sh",
"test": "jshint gulpfile.js"
},
"dependencies": {
"browser-sync": "~3.0",
"chalk": "~5.3",
"fuse.js": "~7.0",
"gulp": "~4.0",
"gulp-clean-css": "~4.3",
"gulp-cli": "~2.3",
"gulp-concat": "~2.6",
"gulp-ejs": "~5.1",
"gulp-htmlhint": "~4.0",
"gulp-jshint": "~2.1",
"gulp-prettify": "~0.5",
"gulp-rename": "~2.0",
"gulp-sass": "~5.1",
"gulp-size": "~5.0",
"gulp-uglify": "~3.0",
"highlight.js": "~11.9",
"imagesloaded": "~5.0",
"jquery": "~3.7",
"jquery-highlight": "~3.5",
"jquery-ui": "~1.13",
"jquery-ui-dist": "~1.13",
"jquery.tocify": "~1.9",
"js-yaml": "~4.1",
"jshint": "~2.13",
"marked": "~11.1",
"marked-gfm-heading-id": "~3.1",
"marked-highlight": "~2.1",
"merge-stream": "~2.0",
"rev-web-assets": "~1.3",
"rimraf": "~5.0",
"run-scripts-util": "~1.2",
"sass": "~1.70",
"tocbot": "~4.25",
"w3c-html-validator": "~1.6"
}
}