generated from n8n-io/n8n-nodes-starter
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
74 lines (74 loc) · 2.11 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
{
"name": "n8n-nodes-browserless",
"version": "1.1.3",
"description": "n8n mode integrate with Browserless platform",
"keywords": [
"n8n-community-node-package",
"n8n",
"n8n-node",
"browserless",
"scrape",
"automation"
],
"license": "MIT",
"homepage": "https://github.com/minhlucvan/n8n-nodes-browserless",
"author": {
"name": "Minh Luc",
"email": "luk.mink@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/minhlucvan/n8n-nodes-browserless"
},
"main": "index.js",
"scripts": {
"tsc": "npm run tsc",
"build": "tsc && gulp build:icons",
"dev": "tsc --watch",
"format": "prettier nodes credentials --write",
"lint": "tslint -p tsconfig.json -c tslint.json && eslint nodes credentials package.json",
"lintfix": "tslint --fix -p tsconfig.json -c tslint.json && eslint nodes credentials package.json --fix",
"prepublishOnly": "npm run build",
"gen:types": "ts-node ./scripts/gen-types.ts",
"test": "jest",
"merge:api": "npx openapi-merge-cli --config ./openapi.config.json",
"p2o": "p2o ./collection.json -f ./openapi.yml",
"codegen": "create-n8n-nodes generate -o . -c nodes.config.js -a ./openapi.yml -t ../../templates/n8n-nodes"
},
"files": [
"dist"
],
"n8n": {
"n8nNodesApiVersion": 1,
"credentials": [
"dist/credentials/BrowserlessApi.credentials.js"
],
"nodes": [
"dist/nodes/Browserless/Browserless.node.js"
]
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/express": "^5.0.0",
"@types/jest": "^29.5.13",
"@types/request-promise-native": "~1.0.21",
"@typescript-eslint/parser": "^7.15.0",
"eslint": "^8.56.0",
"eslint-plugin-n8n-nodes-base": "^1.16.1",
"gulp": "^5.0.0",
"jest": "^29.7.0",
"joi-to-typescript": "^4.14.0",
"js-yaml": "^4.1.0",
"n8n-core": "^1.14.1",
"n8n-workflow": "^1.48.0",
"openapi-merge": "^1.3.3",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tslint": "^6.1.3",
"typescript": "^5.5.3"
},
"dependencies": {
"joi": "^17.13.3"
}
}