This repository was archived by the owner on Dec 14, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.32 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.32 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
{
"name": "sow",
"description": "Harvest CLI tool using node.js.",
"version": "0.3.5",
"homepage": "https://github.com/impleri/sow",
"keywords": [
"harvest",
"harvestapp",
"cli",
"time"
],
"author": {
"name": "Christopher Roussel",
"email": "christopher@impleri.net"
},
"repository": {
"type": "git",
"url": "git@github.com/impleri/sow.git"
},
"bugs": {
"url": "https://github.com/impleri/sow/issues"
},
"license": "BSD",
"preferGlobal": true,
"main": "./build/index",
"bin": {
"sow": "./bin/sow"
},
"scripts": {
"prepublish": "node setup.js prepublish",
"test": "node setup.js test",
"postinstall": "node setup.js postinstall"
},
"dependencies": {
"coffee-script": "~1.6",
"harvest": "~0.0",
"commander": "~2.0",
"oauth": "~0.9",
"loggy": "~0.2",
"colors": "~0.6",
"prompt": "~0.2",
"chrono-node": "~0.1",
"archy": "~0.0",
"mkdirp": "~0.3",
"fuzzy.js": "~0.0"
},
"devDependencies": {
"mocha": "~1.14",
"chai": "~1.8",
"rewire": "~1.1"
},
"readmeFilename": "readme.md",
"readme": "# Sow\n\nYou can only reap what you sow in any Harvest."
}