-
Notifications
You must be signed in to change notification settings - Fork 50
/
Copy pathpackage.json
86 lines (86 loc) · 1.94 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
{
"name": "backslide",
"version": "3.1.0",
"description": "CLI tool for making HTML presentations with Remark.js using Markdown",
"repository": "sinedied/backslide",
"keywords": [
"cli",
"markdown",
"html",
"slideshow",
"presentation",
"slides",
"remark",
"server",
"utility",
"pdf",
"decktape",
"sass"
],
"author": "Yohan Lasorsa",
"license": "MIT",
"main": "backslide.js",
"bin": {
"bs": "./bin/bs"
},
"scripts": {
"init": "cp -R starter/template template",
"start": "npm run init -s && node ./bin/bs serve example",
"clean": "rm -rf .tmp dist pdf template",
"lint": "xo *.js",
"lint:fix": "xo --fix",
"test": "xo *.js",
"export": "npm run init -s && node ./bin/bs export example",
"pdf": "npm run init -s && node ./bin/bs pdf example",
"deploy": "npm run clean && npm run export && gh-pages -d dist",
"release:check": "semantic-release --dry-run"
},
"dependencies": {
"browser-sync": "^2.26.7",
"command-exists": "^1.2.9",
"fs-extra": "^9.0.1",
"glob": "^7.1.6",
"mime": "^3.0.0",
"minimist": "^1.2.5",
"mustache": "^4.0.1",
"progress": "^2.0.3",
"sass": "^1.49.9",
"update-notifier": "^5.0.1",
"web-resource-inliner": "^5.0.0"
},
"devDependencies": {
"gh-pages": "^3.1.0",
"semantic-release": "^19.0.2",
"semantic-release-npm-github": "^3.0.0",
"xo": "^0.48.0"
},
"prettier": {
"trailingComma": "none",
"bracketSpacing": true
},
"xo": {
"space": true,
"prettier": true,
"envs": [
"node"
],
"rules": {
"unicorn/prefer-module": "off",
"promise/prefer-await-to-then": "off",
"unicorn/no-process-exit": "off",
"max-params": "off"
}
},
"release": {
"extends": "semantic-release-npm-github",
"branches": "main"
},
"engines": {
"node": ">=10.0.0"
},
"files": [
"bin",
"starter",
"backslide.js"
]
}