-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
67 lines (67 loc) · 1.66 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
61
62
63
64
65
66
67
{
"name": "@scrapingant/scrapingant-client",
"version": "0.2.1",
"description": "ScrapingAnt API client for JavaScript",
"main": "src/index.js",
"keywords": [
"scrapingant",
"api",
"scraper",
"scraping"
],
"author": {
"name": "ScrapingAnt",
"email": "[email protected]",
"url": "https://scrapingant.com"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/scrapingant/scrapingant-client-js"
},
"bugs": {
"url": "https://github.com/scrapingant/scrapingant-client-js/issues"
},
"homepage": "https://docs.scrapingant.com/",
"files": [
"src",
"dist"
],
"browser": {
"os": false
},
"scripts": {
"build": "npm run clean && npm run build-browser",
"test": "npm run build && jest",
"prepare": "npm run build",
"clean": "rm -rf dist",
"lint": "eslint src test",
"lint:fix": "eslint --fix src test",
"build-browser": "webpack"
},
"dependencies": {
"abab": "^2.0.5",
"async-retry": "^1.3.1",
"axios": "^0.21.1",
"ow": "^0.23.0"
},
"devDependencies": {
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"@babel/register": "^7.11.5",
"@types/jest": "^26.0.14",
"@types/node": "^14.11.5",
"babel-loader": "^8.1.0",
"eslint": "^7.10.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"jest": "^26.5.0",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12"
}
}