-
Notifications
You must be signed in to change notification settings - Fork 44
/
package.json
44 lines (44 loc) · 1003 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
40
41
42
43
44
{
"name": "kijiji-scraper",
"version": "6.3.7",
"description": "A scraper for Kijiji ads",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"dependencies": {
"cheerio": "^0.22.0",
"node-fetch": "^2.6.1"
},
"devDependencies": {
"@types/cheerio": "^0.22.23",
"@types/jest": "^26.0.13",
"@types/node-fetch": "^2.5.7",
"jest": "^26.4.0",
"rimraf": "^3.0.2",
"ts-jest": "^26.3.0",
"typescript": "^4.0.2"
},
"scripts": {
"build": "tsc",
"clean": "rimraf dist",
"prepare": "npm run build",
"test": "jest --config jest.config.js",
"test-integration": "jest ./tests/integrationTests.spec.js",
"prepack": "npm run test"
},
"repository": {
"type": "git",
"url": "git://github.com/mwpenny/kijiji-scraper.git"
},
"keywords": [
"kijiji",
"scraper"
],
"author": "Matt Penny",
"license": "MIT",
"bugs": {
"url": "https://github.com/mwpenny/kijiji-scraper/issues"
}
}