-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
74 lines (74 loc) · 2.08 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
{
"name": "asciidoctor-to-html",
"version": "0.0.1",
"author": "Maksim Kostromin <daggerok@gmail.com> (https://github.com/daggerok)",
"license": "MIT",
"scripts": {
"clean": "rimraf -rf ./dist",
"postclean": "mkdirp ./dist",
"prebuild": "yarn clean",
"build": "cross-env NODE_ENV=production webpack",
"preserve": "yarn build",
"serve": "serve -p 3000 ./dist",
"prestart": "yarn clean",
"start": "npm-run-all -p start:*",
"start:webpack": "cross-env NODE_ENV=development webpack --watch",
"start:livereload": "livereload",
"start:serve": "yarn serve",
"prepredeploy": "yarn -i",
"postpredeploy": "yarn clean",
"predeploy": "NODE_ENV=gh-pages npm-run-all predeploy:*",
"predeploy:eslint": "eslint app",
"predeploy:webpack": "webpack",
"predeploy:gh-pages-404": "ncp ./dist/index.html ./dist/404.html",
"predeploy:nojekyll": "touch ./dist/.nojekyll",
"deploy": "gh-pages -e ./ -d ./dist -s '{*.*,.*,*,**}' --branch gh-pages --dotfiles=true -m \"Github Pages $(date +%Y-%m-%d) deployment\"",
"postdeploy": "echo '(;'"
},
"livereload": {
"exclusions": [
"node_modules"
]
},
"devDependencies": {
"@types/node": "9.6.6",
"@types/requirejs": "2.1.31",
"babel-eslint": "8.2.3",
"babel-preset-env": "1.6.1",
"base-href-webpack-plugin": "2.0.0",
"cross-env": "5.1.4",
"css-loader": "0.28.11",
"eslint": "4.19.1",
"gh-pages": "1.1.0",
"html-webpack-plugin": "3.2.0",
"livereload": "0.7.0",
"mkdirp": "0.5.1",
"ncp": "2.0.0",
"npm-run-all": "4.1.2",
"raw-loader": "0.5.1",
"rimraf": "2.6.2",
"serve": "6.5.5",
"style-loader": "0.21.0",
"webpack": "4.6.0",
"webpack-cli": "2.0.15"
},
"dependencies": {
"asciidoctor.js": "1.5.6",
"babel-polyfill": "6.26.0"
},
"babel": {
"presets": [
"env"
]
},
"keywords": [
"adoc",
"asciidoc",
"asciidoctor",
"asciidoctor.js",
"asciidoctor-to-html",
"asciidoctor-to-html-webpack",
"webpack"
],
"homepage": "https://daggerok.github.io/asciidoctor-to-html"
}