forked from inkdropapp/inkdrop-import-html
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
34 lines (34 loc) · 921 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
{
"name": "import-markdown",
"main": "./lib/index",
"version": "0.2.0",
"description": "A plugin for importing notes from Markdown files",
"keywords": [],
"scripts": {
"build": "babel src/ -d lib/",
"dev": "babel --watch src/ -d lib/"
},
"repository": "https://github.com/q1701/inkdrop-import-markdown",
"license": "MIT",
"engines": {
"inkdrop": "^4.x"
},
"dependencies": {
"core-js": "^3.2.1",
"utf8-binary-cutter": "^0.9.1"
},
"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",
"@types/react": "^16.0.36",
"babel-eslint": "^10.0.2",
"eslint": "^6.1.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.3",
"prettier": "^1.18.2"
}
}