-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
48 lines (48 loc) · 1.37 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
{
"name": "scrapingbee",
"version": "1.7.5",
"description": "ScrapingBee Node SDK",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prepare": "npm run build",
"prebuild": "node -p \"'export const LIB_VERSION = ' + JSON.stringify(require('./package.json').version) + ';'\" > src/version.ts",
"build": "tsc",
"test": "mocha -r ts-node/register tests/**/*.test.ts"
},
"keywords": [
"sdk"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ScrapingBee/scrapingbee-node.git"
},
"author": "ScrapingBee",
"license": "ISC",
"bugs": {
"url": "https://github.com/ScrapingBee/scrapingbee-node/issues"
},
"homepage": "https://github.com/ScrapingBee/scrapingbee-node#readme",
"devDependencies": {
"@types/mocha": "^8.2.3",
"@types/node": "^16.0.0",
"@typescript-eslint/eslint-plugin": "^4.28.2",
"@typescript-eslint/parser": "^4.28.2",
"axios-mock-adapter": "^1.19.0",
"eslint": "^7.30.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-prettier": "^3.4.0",
"mocha": "^9.0.2",
"prettier": "^2.3.2",
"ts-node": "^10.1.0",
"typescript": "^4.3.5"
},
"dependencies": {
"axios": "^1.7",
"axios-retry": "^3.4.0",
"scrapingbee": "^1.1.0",
"yargs-unparser": "^2.0.0"
}
}