-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 1.97 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "notable-cli",
"description": "note-taking application with tui interface",
"version": "0.0.0-dev",
"author": "Ephigenia M. Eichner",
"license": "MIT",
"type": "module",
"homepage": "https://github.com/Ephigenia/notable-cli/",
"keywords": [
"cli",
"markdown",
"note-taking",
"note",
"notebook",
"notes",
"tui"
],
"maintainer": {
"name": "Marcel Eichner",
"email": "[email protected]"
},
"contributors": [
{
"name": "Marcel Eichner",
"email": "[email protected]"
}
],
"engines": {
"node": ">=16.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Ephigenia/notable-cli.git"
},
"funding": "http://github.com/sponsors/Ephigenia",
"bugs": {
"url": "https://github.com/Ephigenia/notable-cli/issues"
},
"files": [
"source",
"!source/**/*.test.js",
"!.DS_Store"
],
"main": "source/notable-cli.js",
"bin": {
"notable-cli": "source/notable-cli.js"
},
"preferGlobal": true,
"scripts": {
"lint:fix": "npm run -s lint -- --fix",
"lint": "eslint source",
"postversion": "git push && git push --tags",
"preversion": "npm test && npm run lint && npm run test:outdated",
"start": "node source/notable-cli.js",
"tdd": "npm run test -- --watch",
"test:outdated": "npm outdated",
"test:security": "npm audit",
"test": "mocha --check-leaks --parallel --recursive --exit \"./source/**/*.test.js\"",
"update": "npx npm-check --update --save-exact",
"version": "npm run changelog && git add CHANGELOG.md"
},
"dependencies": {
"ansi-colors": "4.1.3",
"commander": "9.4.1",
"dayjs": "1.11.6",
"handlebars": "4.7.7",
"marked": "4.2.3",
"marked-terminal": "5.1.1",
"neo-blessed": "0.2.0",
"parse-md": "3.0.3",
"recursive-readdir": "2.2.3",
"sanitize-filename": "1.6.3"
},
"devDependencies": {
"chai": "4.3.7",
"eslint": "8.28.0",
"mocha": "10.1.0"
}
}