forked from OptimalBits/Crawlme
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 805 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 805 Bytes
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
{
"author": "Aron Kornhall <aron@optimalbits.com> (http://optimalbits.com)",
"name": "crawlme",
"description": "Makes your ajax web application indexable by search engines by generating html snapshots on the fly. Caches results for blazing fast responses and better page ranking.",
"keywords": [
"ajax",
"crawling",
"google",
"indexing",
"SEO",
"Search Engine Optimization"
],
"version": "0.0.7",
"main": "./index.js",
"engines": {
"node": ">=0.6.10"
},
"dependencies": {
"async": "0.2.6",
"lru-cache": "2.3.x",
"zombie": "^4.3.0"
},
"devDependencies": {
"connect": "2.x.x",
"express": "3.x.x",
"mocha": "1.6.x",
"request": "2.11.x",
"should": "1.2.x"
},
"scripts": {
"test": "mocha --reporter spec --bail"
}
}