-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
38 lines (38 loc) · 1.15 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
{
"name": "eating",
"version": "0.1.2",
"description": "eating. A natural language command line food diary.",
"scripts": {
"test": "mocha",
"coveralls": "mocha --reporter mocha-lcov-reporter | coveralls src",
"coverageHtml": "mocha --reporter html-cov > coverage.html && open coverage.html",
"build": "coffee --compile --output lib src && echo '#!/usr/bin/env node' | cat - lib/main.js > temp && mv temp lib/main.js",
"prepublish": "coffee --compile --output lib src && echo '#!/usr/bin/env node' | cat - lib/main.js > temp && mv temp lib/main.js"
},
"bin": {
"eating": "./lib/main.js"
},
"author": "Jake Mc <[email protected]>",
"license": "GNU",
"repository": {
"type": "git",
"url": "https://github.com/startswithaj/eating-cli.git"
},
"dependencies": {
"underscore": "",
"sugar": "latest",
"commander": "2.7.1",
"colors": "0.6.2",
"nconf": "latest",
"tungus": "0.0.2",
"mongoose": "3.8.13",
"eating-utils": "0.1.8"
},
"devDependencies": {
"mocha": "^1.18.2",
"chai": "^1.9.1",
"execSync": "^1.0.1-pre",
"coffee-coverage": "^0.4.2",
"coffee-script": "^1.7.1"
}
}