-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 2.32 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "makerflow-cli",
"version": "0.1.5",
"description": "Block distractions and get all your notifications/tasks in one place from other collaboration apps like messages from Slack and pull requests from GitHub or Bitbucket.",
"private": false,
"keywords": [
"productivity",
"do not disturb",
"macos",
"slack",
"makerflow",
"distraction blocker",
"notification blocker",
"deep work",
"collaboration",
"google calendar",
"notification aggregator",
"pull requests dashboard"
],
"repository": {
"url": "https://github.com/makerflow/cli"
},
"author": {
"name": "Makerflow",
"email": "hello@makerflow.co",
"url": "https://makerflow.co"
},
"types": "build/types/types.d.ts",
"bin": {
"makerflow": "bin/cli"
},
"scripts": {
"format": "prettier --write **/*.{js,ts,tsx,json}",
"lint": "tslint -p .",
"clean-build": "rm -rf ./build",
"compile": "tsc -p .",
"copy-templates": "if [ -e ./src/templates ]; then cp -a ./src/templates ./build/; fi",
"build": "yarn format && yarn lint && yarn clean-build && yarn compile && yarn copy-templates",
"prepublishOnly": "yarn build",
"test": "jest",
"watch": "jest --watch",
"snapupdate": "jest --updateSnapshot",
"coverage": "jest --coverage",
"postinstall": "makerflow setup"
},
"files": [
"tsconfig.json",
"tslint.json",
"build",
"LICENSE",
"README.md",
"bin"
],
"license": "MIT",
"dependencies": {
"date-fns": "^2.23.0",
"date-fns-tz": "^1.1.6",
"gluegun": "4.7.1",
"keytar": "^7.7.0",
"lodash": "^4.17.21",
"mindful-timer": "^0.4.2",
"pluralize": "^8.0.0"
},
"devDependencies": {
"@types/jest": "^24.0.18",
"@types/node": "^12.7.11",
"caxa": "^2.1.0",
"dotenv": "^16.0.1",
"jest": "^24.1.0",
"prettier": "^1.12.1",
"ts-jest": "^24.1.0",
"ts-node": "^8.4.1",
"tslint": "^5.12.0",
"tslint-config-prettier": "^1.17.0",
"tslint-config-standard": "^8.0.1",
"typescript": "^3.6.3"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
},
"prettier": {
"semi": false,
"singleQuote": true
},
"pkg": {
"scripts": [
"build/**/*.js",
"src/**/*.js"
],
"targets": [
"node18-macos-x64"
],
"outputPath": "dist"
}
}