-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.82 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.82 KB
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
68
69
70
{
"name": "@ujeebu-org/ujeebu-sdk",
"version": "0.1.2",
"description": "Official Node.js SDK for Ujeebu API - Web scraping, content extraction, SERP data, and more",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prepare": "npm run build",
"build": "tsc",
"test": "mocha -r ts-node/register tests/**/*.spec.ts",
"prepublishOnly": "npm test && npm run build",
"version": "npm run build && git add -A dist",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "https://github.com/ujeebu/ujeebu-node.git"
},
"bugs": {
"url": "https://github.com/ujeebu/ujeebu-node/issues"
},
"homepage": "https://github.com/ujeebu/ujeebu-node#readme",
"keywords": [
"ujeebu",
"web-scraping",
"scraper",
"data-extraction",
"serp",
"search-engine",
"web-automation",
"api-client",
"sdk",
"typescript"
],
"author": "Ujeebu <support@ujeebu.com>",
"license": "MIT",
"files": [
"dist",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=14.0.0"
},
"devDependencies": {
"@types/chai": "^4.3.4",
"@types/mocha": "^10.0.1",
"@types/node": "^18.13.0",
"@types/sinon": "^10.0.13",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"axios-mock-adapter": "^1.21.2",
"chai": "^4.3.7",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"eslint-config-standard-with-typescript": "^34.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"mocha": "^10.2.0",
"openapi-typescript-codegen": "^0.23.0",
"prettier": "^2.8.4",
"sinon": "^15.0.1",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"dependencies": {
"axios": "^1.3.2"
}
}