forked from webhintio/webhintio.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 2.27 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
{
"dependencies": {
"algoliasearch": "^3.24.5",
"applicationinsights": "^1.0.0",
"body-parser": "^1.18.2",
"cheerio": "~0.22.0",
"express": "^4.16.2",
"express-handlebars": "^3.0.0",
"fs": "0.0.2",
"handlebars": "^4.0.11",
"hexo": "^3.4.0",
"hexo-cli": "^1.0.4",
"hexo-filter-cleanup": "^1.0.7",
"hexo-generator-index": "^0.2.1",
"hexo-generator-tag": "^0.2.0",
"hexo-renderer-handlebars": "^2.0.2",
"hexo-renderer-marked-enhanced": "0.0.1",
"hexo-renderer-stylus": "^0.3.1",
"hexo-server": "^0.2.0",
"hexo-util": "^0.6.0",
"js-yaml": "^3.10.0",
"json2yaml": "^1.1.0",
"klaw": "^2.0.0",
"lodash": "^4.17.4",
"marked": "^0.3.6",
"md-2-json": "^1.0.3",
"moment": "^2.19.1",
"normalize-path": "^2.1.1",
"pify": "^3.0.0",
"remove-markdown": "^0.2.2",
"request-promise": "^4.2.2",
"xss-filters": "^1.2.7"
},
"devDependencies": {
"@alrra/travis-scripts": "^3.0.1",
"eslint": "^4.4.1",
"markdownlint": "^0.6.1",
"markdownlint-cli": "^0.3.1",
"mktemp": "^0.4.0",
"npm-run-all": "^4.1.1",
"shelljs": "^0.7.7",
"stylelint": "^8.2.0"
},
"hexo": {
"version": "3.4.0"
},
"private": true,
"scripts": {
"build": "npm run hexo:clean && npm run update-content && node helpers/updater.js src/hexo/source && hexo generate",
"hexo:clean": "hexo clean",
"hexo:generate": "hexo generate",
"hexo:server": "hexo server",
"lint": "npm-run-all lint:*",
"lint:browser": "eslint -c .eslintrc --env browser 'src/hexo/themes/sonarwhal/source/**/*.js'",
"lint:js": "npm run lint:node && npm run lint:browser",
"lint:md": "markdownlint README.md ./src/hexo/source",
"lint:node": "eslint -c .eslintrc --env node '**/*.js' --ignore-pattern 'src/hexo/themes/sonarwhal/source/**/*.js' --ignore-pattern 'dist/**/*.js'",
"lint:styles": "stylelint src/hexo/themes/sonarwhal/source/**/*.css --config .stylelintrc",
"start": "node src/server/index.js",
"test": "npm run lint && npm run build",
"travis-docsearch-scraper": "node helpers/run-docsearch-scraper.js",
"travis-update": ".travis/is-travis.sh && npm run update-content && npm run build && .travis/update-site.sh",
"update-content": "node helpers/update-content.js"
}
}