-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
51 lines (51 loc) · 1.32 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
{
"name": "sqrap",
"version": "1.2.0",
"description": "sqrap is a configurable web scraper that can map information from a website using a json schema.",
"main": "index.js",
"scripts": {
"format": "prettier --single-quote --write index.js",
"lint": "eslint --ext .js index.js",
"precommit": "lint-staged & npm test",
"test": "jest --verbose --coverage && codecov"
},
"jest": {
"testEnvironment": "node",
"coverageDirectory": "./coverage/",
"collectCoverage": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/dinostheo/sqrap.git"
},
"keywords": [
"web-scraper",
"scraper",
"scrapping",
"website",
"json"
],
"author": "Dinos Theodorou <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/dinostheo/sqrap/issues"
},
"homepage": "https://github.com/dinostheo/sqrap#readme",
"dependencies": {
"cheerio": "^1.0.0-rc.2",
"request": "^2.88.0"
},
"devDependencies": {
"codecov": "^3.1.0",
"editorconfig": "^0.15.2",
"eslint": "^5.12.1",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^3.6.0",
"eslint-plugin-import": "^2.14.0",
"husky": "^1.3.1",
"jest": "^23.6.0",
"lint-staged": "^8.1.0",
"nock": "^10.0.6",
"prettier": "^1.15.3"
}
}