-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
43 lines (43 loc) · 918 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
42
43
{
"name": "todo.txt-node",
"version": "0.1.0",
"author": "John-Kim Murphy <[email protected]> http://www.leftium.com",
"description": "Todo.txt for Node.js",
"main": "./lib/todo",
"repository": {
"type": "git",
"url": "git://github.com/leftium/todo.txt-node"
},
"keywords": [
"todo",
"todo.txt",
"todo.sh",
"todo.cmd",
"todo.bat",
"cli",
"command"
],
"scripts": {
"start": "node ./bin/todo"
},
"bugs": {
"url": "https://github.com/leftium/todo.txt-node/issues"
},
"licenses": [
{
"type": "GNU",
"url": "https://github.com/leftium/todo.txt-node/raw/master/LICENSE"
}
],
"preferGlobal": "true",
"bin": {
"todo": "./bin/todo",
"ntodo": "./bin/todo"
},
"devDependencies": {
"grunt": "~0.4.1",
"grunt-contrib-clean": "~0.5.0",
"grunt-contrib-copy": "~0.4.1",
"grunt-contrib-coffee": "~0.7.0"
}
}