-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.14 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "search-notes",
"version": "0.2.0",
"description": "",
"main": "lib/index.js",
"directories": {
"lib": "lib"
},
"bin": {
"search-notes": "lib/cli.js"
},
"engines": {
"node": "^14.9.0 || ^12.18.3"
},
"scripts": {
"test": "node lib -d test/notes scotland"
},
"author": "Alex Krolick <[email protected]>",
"license": "MIT",
"dependencies": {
"debug": "^4.1.1",
"lodash": "^4.17.20",
"lunr": "^2.3.9",
"remarkable": "^2.0.1",
"remarkable-meta": "^1.0.1",
"yargs": "^15.4.1"
},
"devDependencies": {
"doctoc": "^1.4.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.13",
"prettier": "^2.1.1"
},
"lint-staged": {
"README.md": [
"doctoc --github --notitle"
],
"*.(md,js,ts,json)": [
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"repository": {
"type": "git",
"url": "https://github.com/alexkrolick/search-notes"
},
"bugs": {
"url": "https://github.com/alexkrolick/search-notes/issues"
},
"homepage": "https://github.com/alexkrolick/search-notes#readme"
}