-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.44 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
{
"name": "reveal-md-example",
"version": "1.0.0",
"description": "Reveal Markdown slides example",
"main": "README.md",
"scripts": {
"gh-pages": "npm-run-all gh-pages:*",
"gh-pages:rimraf": "rimraf -rf dist",
"gh-pages:reveal-md": "npm run build -- --absolute-url '/reveal-md-example/' # --highlight-theme github",
"gh-pages:mv": "mv ./dist/README.html ./dist/404.html",
"watch": "npm run build -- --disable-auto-open --port-3000 --watch",
"build": "reveal-md ./README.md --static dist --theme black --highlight-theme dark",
"preserve": "npm run build",
"serve": "serve dist",
"test-e2e": "testcafe chrome e2e-tests/e2e-test.js --reporter spec",
"test": "testcafe chrome:headless e2e-tests/e2e-test.js --reporter spec",
"pretest": "npm-run-all pm2-start pm2-logs",
"pm2-start": "pm2 start npm --name npm-run-serve -- run serve",
"pm2-logs": "pm2 start npx --name npx-wait-port-3000 -- wait-port 3000",
"posttest": "npm run stop",
"stop": "pm2 kill"
},
"keywords": [
"reveal-md",
"reveal",
"md",
"markdown",
"slides"
],
"author": "Maksim Kostromin https://gituhb.com/daggerok/",
"license": "MIT",
"devDependencies": {
"mv": "2.1.1",
"npm-run-all": "4.1.5",
"pm2": "5.2.0",
"reveal-md": "5.3.3",
"rimraf": "3.0.2",
"serve": "13.0.2",
"testcafe": "1.19.0",
"testcafe-reporter-spec": "2.1.1",
"wait-port": "0.2.9"
}
}