-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.35 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
{
"name": "scrapezone-node-sdk",
"version": "1.1.1",
"description": "Node.js sdk for using ScrapeZone",
"main": "index.js",
"scripts": {
"test": "node test.js",
"lint": "eslint 'src/**/*.js' --fix",
"format": "prettier-eslint $PWD/'src/**/*.{js,json}' --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/scrapezone/scrapezone-node-sdk.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/scrapezone/scrapezone-node-sdk/issues"
},
"homepage": "https://github.com/scrapezone/scrapezone-node-sdk#readme",
"dependencies": {
"async": "^3.2.0",
"axios": "^0.20.0",
"dotenv": "^8.2.0",
"joi": "^17.3.0",
"lodash": "^4.17.20"
},
"devDependencies": {
"eslint": "7.11.0",
"eslint-config-airbnb-base": "14.2.0",
"eslint-config-prettier": "6.14.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jest": "24.1.0",
"eslint-plugin-prettier": "3.1.4",
"husky": "4.3.0",
"nodemon": "2.0.6",
"prettier": "2.1.2",
"prettier-eslint": "11.0.0",
"prettier-eslint-cli": "5.0.0",
"pretty-quick": "3.1.0"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}