-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.24 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
{
"name": "@epegzz/node-scraper",
"version": "1.2.0",
"author": "Daniel Schäfer <[email protected]>",
"description": "Scraping websites made easy! A minimalistic yet powerful tool for collecting data from websites.",
"keywords": [
"node",
"scraping",
"scraper"
],
"license": "MIT",
"engines": {
"node": ">=10.3"
},
"repository": {
"type": "git",
"url": "https://github.com/epegzz/node-scraper"
},
"engineStrict": true,
"main": "src/node-scraper.js",
"scripts": {
"test": "NODE_ENV=testing jest --verbose --forceExit",
"precommit": "lint-staged",
"watch-test": "NODE_ENV=testing jest --watch",
"coverage": "NODE_ENV=testing jest && codecov",
"lint": "eslint src",
"format": "prettier-eslint --write \"src/**/*.js\""
},
"lint-staged": {
"*.js": [
"npm run format",
"git add"
]
},
"dependencies": {
"axios": "^0.18.0",
"cheerio": "^1.0.0-rc.2"
},
"devDependencies": {
"babel-plugin-syntax-async-generators": "^6.13.0",
"codecov": "^3.0.1",
"eslint": "^4.11.0",
"eslint-plugin-jest": "^21.15.1",
"husky": "^0.14.3",
"jest": "^22.4.3",
"lint-staged": "^7.2.0",
"prettier": "^1.12.1",
"prettier-eslint-cli": "^4.7.1"
}
}