-
-
Notifications
You must be signed in to change notification settings - Fork 43
/
package.json
60 lines (60 loc) · 1.68 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
56
57
58
59
60
{
"name": "node-craigslist",
"description": "a client library for searching, retrieving and creating Craigslist.com listings",
"private": false,
"version": "2.3.1",
"author": "Joshua Thomas (http://github.com/brozeph)",
"contributors": [
"Will Spielberg (https://github.com/kapysh)",
"Leonard Labuneti (https://github.com/unitpas)",
"Jeremy Allen (https://github.com/edhjer)",
"Clint Decker (https://github.com/C-Deck)"
],
"engine": "node >= 4",
"keywords": [
"craigslist",
"search"
],
"repository": {
"type": "git",
"url": "ssh://[email protected]:brozeph/node-craigslist.git"
},
"main": "./dist",
"scripts": {
"lint": "gulp lint",
"posttest": "nyc report --reporter=text-lcov | coveralls",
"prepare": "gulp build",
"pretest": "gulp clean && gulp lint",
"test": "NODE_ENV=test nyc mocha --reporter spec ./test/src/**",
"test:all": "NODE_ENV=test nyc mocha --reporter spec ./test/**"
},
"directories": {
"test": "test"
},
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/eslint-parser": "^7.12.1",
"@babel/eslint-plugin": "^7.12.1",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/register": "^7.12.10",
"chai": "^4.2.0",
"coveralls": "^3.1.0",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-clean": "^0.4.0",
"gulp-eslint": "^6.0.0",
"gulp-sourcemaps": "^3.0.0",
"mocha": "^8.2.1",
"nock": "^13.0.5",
"nyc": "^15.1.0"
},
"dependencies": {
"@babel/runtime-corejs2": "^7.12.5",
"cheerio": "^1.0.0-rc.5",
"debug": "^4.3.1",
"reqlib": "^1.0.11"
}
}