-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.69 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
{
"name": "n8n-nodes-terralego",
"version": "0.1.4",
"description": "n8n nodes that are used in Terralego context.",
"license": "SEE LICENSE IN LICENSE.md",
"homepage": "https://github.com/Terralego/n8n-nodes-terralego",
"author": {
"name": "Jérémie Pardou",
"email": "jpardou@makina-corpus.com"
},
"main": "index.js",
"scripts": {
"dev": "npm run watch",
"build": "tsc && gulp",
"tslint": "tslint -p tsconfig.json -c tslint.json",
"version": "git changelog -n -t $npm_package_version && git add CHANGELOG.md",
"watch": "tsc --watch",
"test": "jest"
},
"files": [
"dist"
],
"n8n": {
"credentials": [
"dist/credentials/BaserowApi.credentials.js"
],
"nodes": [
"dist/nodes/Baserow/Baserow.node.js"
]
},
"devDependencies": {
"@types/express": "^4.17.12",
"@types/jest": "^24.9.1",
"@types/node": "^10.17.60",
"@types/request-promise-native": "^1.0.17",
"gulp": "^4.0.2",
"jest": "^27.0.4",
"n8n-core": "^0.73.0",
"n8n-workflow": "^0.60.0",
"ts-jest": "^27.0.3",
"tslint": "^6.1.3",
"typescript": "^4.3.2"
},
"dependencies": {},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testURL": "http://localhost/",
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"testPathIgnorePatterns": [
"/dist/",
"/node_modules/"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
]
}
}