-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.34 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
54
55
{
"name": "yarse"
, "version": "0.2.0"
, "description": "Yet Another Recipe Search Engine"
, "keywords": [
"JavaScript"
, "Artificial Intelligence"
, "Search Engine"
]
, "author": {
"name": "Michael Jess"
, "mail": "[email protected]"
}
, "main": "main"
, "engines": {
"node": ">= 0.8.11"
}
, "scripts": {
"preinstall": [
"npm i -g grunt && npm i -g jamjs"
]
, "postinstall": [
"jam install"
]
}
, "devDependencies": {
"enhanced-require": "0.4.x"
, "mocha": "1.6.x"
, "should": "1.2.x"
, "grunt-simple-mocha": "0.2.x"
, "webpack": "0.8.x"
, "coffee-script": "1.3.x"
, "jade-loader": "0.2.x"
, "backbone": "0.9.x"
, "jquery": "1.7.x"
, "underscore": "1.4.x"
}
, "jam": {
"dependencies": {
"jquery": "1.8.x"
, "backbone": "0.9.x"
, "bootstrap": "2.1.x"
, "underscore": "1.3.3-jam.1"
}
, "packageDir": "web_modules"
}
, "yarse": {
"signatureServer": "http://localhost"
, "signatureServerPort": "80"
, "signatureFile": "./config/signature"
, "baseUrl": "http://platform.fatsecret.com/rest/server.api"
, "forwardMethod": "cors"
, "signatureMethod": "sign"
}
}