-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
76 lines (76 loc) · 1.86 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
68
69
70
71
72
73
74
75
76
{
"name": "phantombuster-sdk",
"version": "1.0.0",
"description": "Phantombuster's SDK",
"main": "build/sdk.js",
"scripts": {
"test": "jest",
"prepublish": "npm run build",
"prepublishOnly": "npm run build",
"build": "npx tsc -p tsconfig.prod.json",
"watch": "npm run build -- --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/phantombuster/sdk.git"
},
"engines": {
"node": "~20",
"npm": ">=10"
},
"keywords": [
"phantombuster",
"casperjs",
"phantomjs",
"sdk",
"headless",
"chrome",
"scraping"
],
"author": "Martin Tapia <[email protected]> (https://phantombuster.com)",
"license": "ISC",
"bugs": {
"url": "https://github.com/phantombuster/sdk/issues",
"email": "[email protected]"
},
"homepage": "https://github.com/phantombuster/sdk",
"preferGlobal": true,
"bin": {
"phantombuster": "build/sdk.js"
},
"devDependencies": {
"@swc/core": "^1.7.23",
"@swc/jest": "^0.2.36",
"@types/cson": "^7.20.3",
"@types/eslint": "^8.56.12",
"@types/jest": "^29.5.12",
"@types/needle": "^3.3.0",
"@types/node": "^22.5.2",
"@typescript-eslint/eslint-plugin": "^8.4.0",
"@typescript-eslint/parser": "^8.4.0",
"as-typed": "^1.3.2",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-deprecation": "^3.0.0",
"eslint-plugin-jest": "^28.8.2",
"eslint-plugin-jest-formatting": "^3.1.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-promise": "^7.1.0",
"eslint-plugin-regexp": "^2.6.0",
"eslint-plugin-sonarjs": "^2.0.2",
"eslint-plugin-toplevel": "^1.1.0",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
},
"dependencies": {
"cson": "3.0.x",
"is-my-json-valid": "^2.20.6",
"needle": "^3.3.1",
"node-watch": "^0.7.4",
"yargs": "^17.7.2"
}
}