forked from brozeph/node-craigslist
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.26 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.26 KB
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-craigslist",
"description": "a client library for searching, retrieving and creating Craigslist.com listings",
"private": false,
"version": "0.1.8",
"author": "Joshua Thomas (http://github.com/brozeph)",
"engine": "node >= 0.8.0",
"keywords": [
"craigslist",
"search"
],
"repository": {
"type": "git",
"url": "ssh://git@github.org:brozeph/node-craigslist.git"
},
"main": "./lib",
"scripts": {
"pretest": "jshint lib/*.js test/*.js ; rm -rf lib-cov ; jscoverage --no-highlight lib lib-cov",
"test": "mocha --check-leaks -R spec -r ./test/common.js ./test/lib ./test/functional",
"posttest": "NODE_NCL_COVERAGE=true mocha -R mocha-lcov-reporter -r ./test/common.js ./test/lib | ./node_modules/coveralls/bin/coveralls.js",
"coverage": "rm -rf reports ; mkdir -p reports ; NODE_NCL_COVERAGE=true mocha -R html-cov -r ./test/common.js ./test/lib > reports/coverage.html",
"functional": "mocha -R spec -r ./test/common.js ./test/functional"
},
"dependencies": {
"cheerio": "^0.17.0"
},
"devDependencies": {
"chai": "*",
"coveralls": "*",
"jscoverage": "*",
"jshint": "*",
"mocha": "*",
"mocha-lcov-reporter": "*"
},
"directories": {
"test": "test"
},
"license": "MIT"
}