-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
60 lines (60 loc) · 1.35 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
{
"name": "wunderline",
"version": "4.10.3",
"description": "Wunderlist for your command line!",
"main": "wunderline.js",
"homepage": "http://wayneashleyberry.github.io/wunderline/",
"engines": {
"node": ">=4.0.0"
},
"bin": {
"wunderline": "./wunderline.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wayneashleyberry/wunderline.git"
},
"scripts": {
"format": "prettier --write '**/*.js'",
"pretest": "prettier -l --write '**/*.js'",
"test": "nyc ava test.js"
},
"keywords": [
"wunderlist",
"wunderline",
"task",
"todo",
"productivity"
],
"author": {
"name": "Wayne Ashley Berry",
"url": "https://twitter.com/waynethebrain"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/wayneashleyberry/wunderline/issues"
},
"dependencies": {
"async": "^2.4.1",
"chalk": "^1.0.0",
"columnify": "^1.5.1",
"commander": "^2.8.1",
"configstore": "^3.1.0",
"fuzzysearch": "^1.0.3",
"get-stdin": "^5.0.0",
"inquirer": "^3.0.6",
"lodash.find": "^4.4.0",
"lodash.trunc": "^3.0.3",
"moment": "^2.22.1",
"opn": "^5.0.0",
"request": "^2.88.0",
"vorpal": "^1.11.2",
"wordwrap": "^1.0.0"
},
"devDependencies": {
"ava": "^0.25.0",
"bin-check": "^4.0.1",
"nyc": "^13.2.0",
"prettier": "^2.0.5"
}
}