-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 927 Bytes
/
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
{
"name": "@scrape-do/client",
"version": "1.0.2",
"main": "dist/lib.js",
"types": "src/lib.d.ts",
"description": "Scrape.do Node.js API client",
"keywords": [
"scrape",
"do",
"scraping",
"api",
"client",
"node",
"typescript",
"scrape.do",
"scrape-do",
"http",
"scrape.do api"
],
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/scrape-do/node-client.git"
},
"scripts": {
"dev": "npx ts-node src/lib.ts",
"build": "tsc",
"test": "jest",
"prepare": "npm run build"
},
"author": "Scrape.do <hello@scrape.do>",
"license": "MIT",
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/node": "^20.12.7",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
},
"dependencies": {
"@types/qs": "^6.9.17",
"dotenv": "^16.4.5",
"qs": "^6.13.0"
}
}