-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.29 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
{
"name": "google-tasks-cli",
"version": "1.0.0",
"description": "A CLI wrapper for Google Tasks",
"main": "lib/index.js",
"bin": {
"gt": "lib/index.js"
},
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"clean:build": "rm -rf lib",
"postbuild": "chmod +x lib/index.js",
"prebuild": "npm run clean:build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/burtonjc/google-tasks-cli.git"
},
"keywords": [
"Google",
"Tasks",
"CLI"
],
"author": "Jacob Burton <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/burtonjc/google-tasks-cli/issues"
},
"homepage": "https://github.com/burtonjc/google-tasks-cli#readme",
"devDependencies": {
"@types/cli-table": "^0.3.0",
"@types/configstore": "^4.0.0",
"@types/meow": "^5.0.0",
"@types/node": "^11.15.10",
"@types/server-destroy": "^1.0.0",
"ts-node": "^8.8.2",
"typescript": "^3.4.2"
},
"dependencies": {
"chalk": "^2.4.2",
"cli-table": "^0.3.1",
"configstore": "^4.0.0",
"googleapis": "^39.2.0",
"meow": "^5.0.0",
"moment": "^2.24.0",
"opn": "^6.0.0",
"server-destroy": "^1.0.1",
"source-map-support": "^0.5.12"
}
}