-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 948 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
{
"name": "marks-nav",
"main": "./lib/index",
"version": "0.3.0",
"description": "Inkdrop plugin to help you navigate marks",
"keywords": [
"inkdrop",
"marks"
],
"scripts": {
"build": "babel src/ -d lib/",
"dev": "babel src/ -s -d lib/ --watch"
},
"repository": "https://github.com/mikewudev/marks-nav.git",
"license": "MIT",
"engines": {
"inkdrop": "^4.x"
},
"devDependencies": {
"@babel/cli": "^7.8.3",
"@babel/core": "^7.8.3",
"@babel/plugin-transform-modules-commonjs": "^7.10.4",
"@babel/preset-env": "^7.8.3",
"@babel/preset-react": "^7.8.3",
"babel-eslint": "^10.0.3",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.9.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.18.0",
"prettier": "^1.19.1"
},
"dependencies": {
"mdast-util-to-string": "^1.1.0",
"unist-util-map": "^2.0.1",
"unist-util-visit": "^2.0.3"
}
}