-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 833 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": "sync-github-project-todo-md",
"main": "./lib/github-project-todo-md",
"version": "1.2.2",
"description": "Sync between GitHub Project Board <-> Markdown Todo text.",
"keywords": [],
"repository": "https://github.com/azu/inkdrop-github-project-todo-md",
"license": "MIT",
"engines": {
"inkdrop": "^5.x"
},
"dependencies": {
"github-project-todo-md": "^1.4.4"
},
"scripts": {
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,css}\"",
"prepare": "git config --local core.hooksPath .githooks"
},
"prettier": {
"singleQuote": false,
"printWidth": 120,
"tabWidth": 4,
"trailingComma": "none"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,css}": [
"prettier --write"
]
},
"devDependencies": {
"lint-staged": "^12.0.3",
"prettier": "^2.4.1"
}
}