-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 915 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": "jrnl",
"description": "Tool for writing journal entries from the command line",
"version": "0.0.10",
"repository": "purplecones/jrnl-cli",
"scripts": {
"start": "node build/main.js",
"prestart": "npm run build && chmod +x build/main.js",
"build": "backpack build",
"prepublish": "npm run build",
"eslint": "eslint_d src",
"test": "npm run eslint && npm run build"
},
"preferGlobal": true,
"bin": "./build/main.js",
"dependencies": {
"backpack-core": "^0.4.2",
"change-case": "^3.0.1",
"commander": "^2.11.0",
"file-system": "^2.2.2",
"find": "^0.2.7",
"find-in-files": "^0.4.0",
"inquirer": "^3.2.3",
"inquirer-autocomplete-prompt": "^0.11.1",
"markdown-table": "^1.1.1",
"moment": "^2.18.1",
"nedb": "^1.8.0",
"sentiment": "^4.0.1",
"shelljs": "^0.7.8"
},
"devDependencies": {
"jest": "^21.2.1"
}
}