forked from EQWorks/updates
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 948 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
35
36
37
38
39
40
41
{
"name": "@eqworks/updates",
"version": "2.0.0-alpha.0",
"description": "Tool to retrieve work updates from multiple sources.",
"main": "index.js",
"source": "index.js",
"files": [
"index.js",
"cli.js",
"sources",
"targets"
],
"bin": {
"updates": "./cli.js"
},
"scripts": {
"range": "env $(print-env) node cli.js range",
"weekly": "env $(print-env) node cli.js weekly",
"daily": "env $(print-env) node cli.js daily",
"lint": "eslint .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "[email protected]",
"license": "MIT",
"engines": {
"node": "18.x"
},
"dependencies": {
"@notionhq/client": "^1.0.4",
"@octokit/core": "^3.2.4",
"@slack/web-api": "^5.15.0",
"@tryfabric/martian": "^1.2.4",
"asana": "^0.18.5",
"luxon": "^1.25.0",
"yargs": "^17.3.0"
},
"devDependencies": {
"eslint": "^7.18.0"
}
}