-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1 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
{
"name": "notepack-cli",
"version": "1.0.0-prerelease.24",
"description": "Local note taking CLI helpers",
"main": "index.js",
"scripts": {
"postinstall": "./bin/notepack postinstall",
"test": "jest"
},
"bin": {
"notepack": "./bin/notepack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kynatro/notepack-cli.git"
},
"author": "Dave Shepard <kynatro@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/kynatro/notepack-cli/issues"
},
"homepage": "https://github.com/kynatro/notepack-cli#readme",
"engines": {
"node": "^14.x",
"npm": "^6.x"
},
"dependencies": {
"chokidar": "^3.5.3",
"front-matter": "^4.0.2",
"yargs": "^17.3.1"
},
"devDependencies": {
"eslint": "^7.29.0",
"jest": "^27.0.6",
"js-yaml": "^3.14.1"
},
"eslintConfig": {
"env": {
"node": true,
"es6": true
},
"extends": "eslint:recommended",
"parserOptions": {
"ecmaVersion": 2017
}
}
}