-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
44 lines (44 loc) · 976 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
38
39
40
41
42
43
44
{
"name": "markdown-notes",
"version": "1.2.0",
"description": "Templates for your Markdown Notes",
"main": "md-notes.js",
"directories": {
"example": "examples"
},
"scripts": {
"start": "node .",
"test": "jest --coverage --detectOpenHandles",
"pretest": "eslint . --fix"
},
"keywords": [
"cli",
"markdown",
"notes"
],
"author": "edurbrito",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/edurbrito/markdown-notes.git"
},
"dependencies": {
"inquirer": "^7.3.3"
},
"bin": {
"md-notes": "./md-notes.js"
},
"devDependencies": {
"eslint": "^7.19.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.1.0",
"jest": "^26.6.3"
},
"jest": {
"coverageDirectory": "./tests/coverage/",
"collectCoverage": true
}
}