-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
53 lines (53 loc) · 1.11 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
{
"name": "foodcommander",
"version": "0.0.2",
"description": "Food ordering tool",
"author": {
"name": "Gilles Grousset",
"email": "[email protected]",
"url": "https://github.com/zippy1978"
},
"repository": "zippy1978/foodcommander",
"license": "MIT",
"files": [
"bin",
"lib"
],
"keywords": [
"foodcommander",
"food",
"order",
"api",
"pizza"
],
"devDependencies": {
"grunt-cli": "^0.1.13",
"grunt-contrib-jshint": "^0.11.0",
"grunt-contrib-nodeunit": "^0.4.1",
"grunt-contrib-watch": "^0.6.1",
"grunt-mocha-cli": "^1.12.0",
"jshint-stylish": "^1.0.1",
"load-grunt-tasks": "^3.1.0"
},
"dependencies": {
"meow": "^3.1.0",
"ascii-table": "0.0.8",
"cheerio": "^0.19.0",
"colors": "^1.0.3",
"commander": "^2.7.1",
"moment": "^2.10.2",
"progress": "^1.1.8",
"q": "^1.2.0",
"request": "^2.55.0",
"sprintf-js": "^1.0.2",
"time-grunt": "^1.1.0",
"winston": "^1.0.0"
},
"main": "./lib/foodcommander.js",
"scripts": {
"test": "grunt"
},
"bin": {
"foodcom": "./bin/foodcom"
}
}