-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
126 lines (126 loc) · 3.01 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "markserv-cli",
"version": "1.2.2",
"description": "Launch your Markdown content into hyper-space.",
"preferGlobal": true,
"main": "markserv.js",
"bin": {
"markserv": "markserv.js"
},
"scripts": {
"start": "node markserv.js",
"test": "xo ./lib/**/* && mocha ./test/specs/**/*.spec.js --recursive",
"watch-test": "mocha test/specs/**/*.spec.js --recursive --watch --timeout 10000",
"prepublish": "(npm test || true)",
"preinstall": "rm -rf node_modules/app || true",
"postinstall": "ln -s ../ node_modules/app"
},
"repository": "git@github.com:markserv/markserv-cli",
"directories": {
"test": "test"
},
"dependencies": {
"bluebird": "^3.4.6",
"browser-sync": "^2.18.8",
"caller-id": "^0.1.0",
"chalk": "^1.1.3",
"cheerio": "^0.22.0",
"chokidar": "^1.6.1",
"connect": "^3.5.0",
"connect-livereload": "^0.6.0",
"ctrl-c": "^2.2.5",
"deep-equal": "^1.0.1",
"figlet": "^1.2.0",
"filter-files": "^0.4.0",
"forever": "^0.15.3",
"fs-extra": "^2.1.2",
"handlebars": "^4.0.6",
"html-validator": "^2.2.0",
"htmllint": "^0.6.0",
"http-shutdown": "^1.1.0",
"log4js": "^1.0.1",
"markserv-contrib-app.github": "^1.2.3",
"micromatch": "^2.3.11",
"mkdirp": "^0.5.1",
"node-dir": "^0.1.16",
"open": "^0.0.5",
"open-port-host": "^2.0.0",
"packpath": "^0.1.0",
"phantom": "^4.0.1",
"phantomjs": "^2.1.7",
"recursive-readdir": "^2.1.1",
"resolve": "^1.2.0",
"sigint": "^1.0.0",
"unclosed-markup": "^1.1.0",
"watch": "^1.0.1"
},
"devDependencies": {
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"chromedriver": "^2.27.3",
"mocha": "^3.2.0",
"mocha-phantomjs": "^4.1.0",
"node-horseman": "^3.2.0",
"node-slimer": "^0.2.10",
"rimraf": "^2.6.1",
"selenium-webdriver": "^3.1.0",
"wdio-phantomjs-service": "^0.2.2",
"webdriverio": "^4.6.2",
"xo": "^0.17.1"
},
"keywords": [
"markdown",
"server",
"includes",
"livereload",
"http",
"html",
"markserv",
"markup",
"documentation",
"website",
"blog"
],
"author": "F1LT3R",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/markserv/markserv-cli/issues"
},
"homepage": "https://github.com/markserv/markserv-cli#readme",
"xo": {
"esnext": true,
"semicolon": false,
"globals": [
"it",
"describe",
"beforeEach",
"before",
"after",
"afterEach"
],
"rules": {
"import/no-extraneous-dependencies": 0,
"import/no-dynamic-require": 0,
"import/no-unresolved": 0,
"no-use-extend-native": 0,
"no-multi-str": 0
},
"overrides": [
{
"files": "**/Markconf.*",
"rules": {
"unicorn/filename-case": [
"error",
{
"case": "pascalCase"
}
]
}
}
]
},
"settings": {
"configFilename": "Markconf.js",
"defaultsFilename": "markserv.defaults.js"
}
}