-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
39 lines (39 loc) · 883 Bytes
/
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
{
"name": "node-spider",
"author": "Ariel Flesler <[email protected]>",
"version": "1.4.1",
"description": "Generic web crawler powered by Node.js",
"keywords": [
"spider",
"crawler",
"node",
"nodejs",
"web",
"scrap",
"crawl"
],
"main": "./index.js",
"license": "BSD-2-Clause",
"bugs": "https://github.com/flesler/node-spider/issues",
"repository": "git://github.com/flesler/node-spider.git",
"dependencies": {
"cheerio": "0.19.x",
"request": "2.61.x"
},
"devDependencies": {
"chai": "^3.4.0",
"ghooks": "^0.3.2",
"jshint": "^2.8.0",
"mocha": "^2.3.3"
},
"scripts": {
"test": "./node_modules/.bin/mocha -b test/*.js",
"lint": "./node_modules/.bin/jshint index.js lib/document.js"
},
"config": {
"ghooks": {
"pre-commit": "npm run lint",
"pre-push": "npm test"
}
}
}