generated from harshil1712/n8n-nodes-starter
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
70 lines (70 loc) · 1.55 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
{
"name": "n8n-nodes-pageres",
"version": "0.1.0",
"description": "An n8n node that use pageres to take screenshot of websites",
"main": "index.js",
"repository": "https://github.com/harshil1712/n8n-nodes-pageres.git",
"author": {
"name": "Harshil Agrawal",
"email": "[email protected]"
},
"scripts": {
"dev": "npm run watch",
"build": "tsc && gulp",
"lint": "tslint -p tsconfig.json -c tslint.json",
"lintfix": "tslint --fix -p tsconfig.json -c tslint.json",
"nodelinter": "nodelinter --target=./nodes/",
"watch": "tsc --watch",
"test": "jest"
},
"files": [
"dist"
],
"n8n": {
"nodes": [
"dist/PageresNode.node.js"
]
},
"devDependencies": {
"@types/express": "^4.17.6",
"@types/jest": "^26.0.13",
"@types/node": "^14.17.27",
"@types/request-promise-native": "~1.0.15",
"gulp": "^4.0.0",
"jest": "^26.4.2",
"n8n-workflow": "~0.83.0",
"nodelinter": "^0.1.9",
"ts-jest": "^26.3.0",
"tslint": "^6.1.2",
"typescript": "~4.3.5"
},
"dependencies": {
"n8n-core": "~0.101.0",
"pageres": "^6.3.0"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testURL": "http://localhost/",
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"testPathIgnorePatterns": [
"/dist/",
"/node_modules/"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
]
},
"license": "MIT",
"keywords": [
"n8n",
"node",
"pageres",
"screenshot",
"puppeteer"
]
}