-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 820 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 820 Bytes
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": "md2nestedjson",
"description": "Convert a Karabiner config to markdown.",
"version": "0.0.0",
"author": {
"name": "Raine Revere",
"email": "raine@cybersemics.org",
"url": "https://github.com/raineorshine"
},
"main": "index.js",
"engines": {
"node": ">=10"
},
"license": "ISC",
"scripts": {
"lint": "eslint .",
"lintfix": "npm run lint -- --fix",
"test": "ava",
"watch": "ava --verbose --watch"
},
"devDependencies": {
"ava": "^3.12.1",
"eslint": "^7.9.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-fp": "^2.3.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1"
},
"dependencies": {
"markdown-it": "^11.0.1"
}
}