-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.01 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
{
"name": "focusapp-cli",
"version": "0.4.0",
"description": "Pomodoro cli app",
"scripts": {
"test": "jest",
"lint": "xo",
"push": "npm run lint && npm run test && npm run publish"
},
"xo": {
"space": true,
"ignores": "tests/*.spec.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Partysun/focus-cli.git"
},
"bugs": {
"url": "https://github.com/Partysun/focus-cli/issues"
},
"homepage": "https://github.com/Partysun/focus-cli#readme",
"preferGlobal": true,
"bin": {
"focus": "main.js"
},
"keywords": [
"pomodoro",
"focus",
"cli"
],
"author": "Yura Zatsepin",
"license": "MIT",
"dependencies": {
"cli-usage": "^0.1.4",
"emmett": "^3.1.1",
"inquirer": "^3.2.0",
"inquirer-autocomplete-prompt": "^0.11.0",
"jsonfile": "^3.0.1",
"minimist": "^1.2.0",
"moment": "^2.18.1",
"nedb": "^1.8.0",
"node-notifier": "^5.1.2"
},
"devDependencies": {
"jest": "^20.0.4",
"xo": "^0.18.2"
}
}