This repository was archived by the owner on Mar 18, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.27 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.27 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
58
59
60
61
62
63
64
65
{
"name": "todoist-habitrpg",
"version": "1.1.1",
"description": "One way sync from Todoist -> HabitRPG.",
"main": "index.js",
"homepage": "https://github.com/Kusold/todoist-habitrpg",
"directories": {
"test": "test"
},
"scripts": {
"test": "mocha"
},
"bugs": {
"url": "https://github.com/Kusold/todoist-habitrpg/issues",
"email": "hello@mikekusold.com"
},
"repository": {
"type": "git",
"url": "https://github.com/Kusold/todoist-habitrpg.git"
},
"keywords": [
"todoist",
"habitrpg",
"todo",
"habit",
"sync"
],
"author": {
"name": "Mike Kusold",
"email": "hello@mikekusold.com",
"url": "http://mikekusold.com"
},
"contributors": [
{
"name": "Blade Barringer",
"url": "https://github.com/crookedneighbor"
}
],
"bin": {
"todoist-habitrpg": "./main.js"
},
"engines": {
"node": ">=0.10"
},
"os": [
"darwin",
"linux",
"win32"
],
"license": "GPL v3",
"dependencies": {
"habitrpg-api": "1.0.1",
"commander": "~2.2.0",
"superagent": "~0.18.0",
"async": "~0.9.0",
"lodash": "~2.4.1"
},
"devDependencies": {
"chai": "3.5.0",
"mocha": "3.1.2",
"sinon": "^1.10.3",
"sinon-chai": "^2.5.0"
},
"preferGlobal": true
}