-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
65 lines (65 loc) · 1.49 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
{
"name": "markpress",
"description": "A tool to generate impress.js presentations from markdown files",
"version": "4.0.0",
"author": "Joan Gamell <http://gamell.io>",
"bugs": "https://github.com/gamell/markpress/issues",
"preferGlobal": true,
"dependencies": {
"browser-sync": "^2.17.0",
"co": "^4.6.0",
"colors": "^1.1.2",
"commander": "^2.9.0",
"defaults": "^1.0.3",
"fetch-base64": "^1.0.0",
"less": "^2.7.1",
"marky-markdown": "^8.1.0",
"rewire": "^2.5.2",
"stacktrace-js": "^1.3.1"
},
"devDependencies": {
"chai": "^3.5.0",
"eslint": "^3.5.0",
"eslint-config-google": "^0.6.0",
"intercept-stdout": "^0.1.2",
"mocha": "^3.0.2",
"publish-please": "^2.1.4",
"sinon": "^1.17.4"
},
"engines": {
"node": ">= 5.0.0"
},
"homepage": "https://github.com/gamell/markpress",
"keywords": [
"markdown",
"impress"
],
"license": "MIT",
"main": "index.js",
"bin": {
"markpress": "bin/markpress.js"
},
"scripts": {
"test": "mocha --harmony --recursive ./test",
"generate-examples": "./generate-examples.sh",
"publish-please": "publish-please",
"prepublish": "publish-please guard"
},
"repository": "https://github.com/gamell/markpress.git",
"eslintConfig": {
"extends": "google",
"env": {
"node": true,
"es6": true
},
"rules": {
"no-console": 0,
"strict": 0,
"require-jsdoc": 0,
"max-len": [
"warn",
120
]
}
}
}