forked from inkdropapp/inkdrop-export-as-markdown
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 1000 Bytes
/
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
{
"version": "0.3.6",
"name": "export-as-deckset",
"description": "Export as deckset",
"repository": {
"type": "git",
"url": "https://github.com/koichiro/inkdrop-export-as-deckset.git"
},
"license": "MIT",
"main": "./lib/index.js",
"styleSheets": [],
"scripts": {
"build": "babel src/ -d lib/",
"dev": "babel src/ -s -d lib/ --watch",
"lint": "eslint src"
},
"dependencies": {
"inkdrop-export-utils": "^2.3.0",
"moment": "^2.24.0",
"sanitize-filename": "^1.6.3",
"touch": "^3.1.0"
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.3",
"eslint": "^6.3.0",
"eslint-config-prettier": "^6.1.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.3",
"prettier": "^1.18.2"
},
"engines": {
"inkdrop": "^4.x"
}
}