forked from zeke/remind-me
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.34 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.34 KB
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
{
"name": "remind-me",
"version": "1.6.1",
"description": "A command-line reminder tool that supports natural language dates and times, inspired by Slack's remind feature",
"main": "index.js",
"scripts": {
"test": "NODE_ENV=test mocha",
"cron": "node ./lib/cron.js",
"setup": "node ./lib/setup.js",
"teardown": "node ./lib/teardown.js",
"postinstall": "npm run setup",
"postuninstall": "npm run teardown"
},
"bin": {
"remind": "./index.js",
"remind-me": "./index.js"
},
"preferGlobal": true,
"repository": "github:zeke/remind-me",
"keywords": [
"calendar",
"date",
"time",
"reminders",
"gtd",
"slack"
],
"author": "zeke",
"license": "ISC",
"bugs": {
"url": "https://github.com/zeke/remind-me/issues"
},
"homepage": "https://github.com/zeke/remind-me#readme",
"dependencies": {
"chrono-node": "1.1.5",
"cp": "0.2.0",
"crontab": "1.1.0",
"dateparser": "1.0.6",
"easypattern": "0.0.2",
"gh-issue-url": "0.0.2",
"mkdirp": "0.5.1",
"node-notifier": "4.3.1",
"node-slack": "0.0.7",
"open": "0.0.5",
"prettydate": "0.0.1",
"require-dir": "0.3.0",
"rimraf": "2.4.3",
"tmp": "0.0.28",
"twilio": "2.5.1",
"user-home": "2.0.0",
"uuid": "2.0.1"
},
"devDependencies": {
"mocha": "2.3.4",
"standard": "6.0.8"
}
}