-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.27 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
{
"name": "md2impress",
"version": "0.2.0",
"description": "a Markdown to Impress.js presentation generator",
"main": "src/index.js",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/louisjordan/md2impress.git"
},
"author": "Louis Jordan <[email protected]>",
"license": "MIT",
"scripts": {
"build": "webpack",
"lint": "prettier --single-quote --print-width 120 -l --write \"{src,test}/**/*.js\"",
"pre-commit": "npm run build && npm run lint",
"test": "jest"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"css-loader": "^0.28.7",
"jest": "@21.2.1",
"prettier": "^1.8.2",
"to-string-loader": "^1.1.5",
"webpack": "@3.6.0",
"jsdom": "^11.9.0"
},
"dependencies": {
"commander": "^2.12.2",
"jszip": "^3.1.5",
"marked": "^0.3.6"
},
"bugs": {
"url": "https://github.com/louisjordan/md2impress/issues"
},
"homepage": "https://louisjordan.github.io/md2impress",
"bin": {
"md2impress": "cli/md2impress.js"
},
"directories": {
"doc": "docs",
"test": "test"
},
"keywords": ["markdown", "impress", "presentation", "generator", "node", "browser", "cli"]
}