forked from catesandrew/recipe-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 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
39
40
41
42
43
44
45
46
47
48
49
{
"name": "recipe-parser",
"version": "0.1.1",
"author": {
"name": "Andrew Cates",
"email": "[email protected]"
},
"description": "simple recipe parsers",
"bin": {
"scrub-recipe": "./bin/scrub-recipe",
"_scrub-recipe": "./bin/_scrub-recipe"
},
"scripts": {
"test": "mocha"
},
"main": "./index",
"repository": {
"type": "git",
"url": "https://github.com/catesandrew/recipe-parser"
},
"dependencies": {
"plist": "git://github.com/catesandrew/node-plist.git",
"mocha": "~1.17.0",
"commander": "~2.1.0",
"backbone": "~1.1.0",
"request": "~2.31.0",
"underscore": "~1.5.2",
"async": "~0.2.9",
"progress": "~1.1.3",
"chai": "~1.8.1",
"pluralize": "0.0.6",
"natural": "~0.1.25",
"underscore.string": "~2.3.3",
"colors": "~0.6.2",
"cheerio": "~0.13.1",
"change-case": "~1.0.4",
"prompt": "~0.2.12"
},
"devDependencies": {
"grunt": "~0.4.2",
"grunt-contrib-watch": "~0.5.3",
"grunt-shell": "~0.6.4",
"grunt-concurrent": "~0.4.3",
"grunt-mocha-test": "~0.9.0",
"npm": "~1.3.26",
"install": "~0.1.7",
"load-grunt-tasks": "~0.3.0"
}
}