mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 06:34:05 -08:00
1c98f97e9e
Revert "ci: Start supporting node.js 18 (#4518)"
This reverts commit 9ee292cd17
.
63 lines
1.5 KiB
JSON
63 lines
1.5 KiB
JSON
{
|
|
"name": "n8n-workflow",
|
|
"version": "0.123.0",
|
|
"description": "Workflow base code of n8n",
|
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
"homepage": "https://n8n.io",
|
|
"author": {
|
|
"name": "Jan Oberhauser",
|
|
"email": "jan@n8n.io"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/n8n-io/n8n.git"
|
|
},
|
|
"main": "dist/src/index.js",
|
|
"module": "src/index.ts",
|
|
"types": "dist/src/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"require": "./dist/src/index.js",
|
|
"import": "./src/index.ts",
|
|
"types": "./dist/src/index.d.ts"
|
|
},
|
|
"./*": "./*"
|
|
},
|
|
"scripts": {
|
|
"dev": "npm run watch",
|
|
"build": "tsc",
|
|
"format": "cd ../.. && node_modules/prettier/bin-prettier.js packages/workflow/**/**.ts --write",
|
|
"lint": "eslint .",
|
|
"lintfix": "eslint . --fix",
|
|
"watch": "tsc --watch",
|
|
"test": "jest",
|
|
"test:dev": "jest --watch"
|
|
},
|
|
"files": [
|
|
"dist/**/*"
|
|
],
|
|
"devDependencies": {
|
|
"@n8n_io/eslint-config": "",
|
|
"@types/express": "^4.17.6",
|
|
"@types/jmespath": "^0.15.0",
|
|
"@types/lodash.get": "^4.4.6",
|
|
"@types/lodash.merge": "^4.6.6",
|
|
"@types/lodash.set": "^4.3.6",
|
|
"@types/luxon": "^2.0.9",
|
|
"@types/node": "^16.11.22",
|
|
"@types/xml2js": "^0.4.3",
|
|
"prettier": "^2.3.2",
|
|
"typescript": "~4.8.0"
|
|
},
|
|
"dependencies": {
|
|
"@n8n_io/riot-tmpl": "^1.0.1",
|
|
"jmespath": "^0.16.0",
|
|
"lodash.get": "^4.4.2",
|
|
"lodash.isequal": "^4.5.0",
|
|
"lodash.merge": "^4.6.2",
|
|
"lodash.set": "^4.3.2",
|
|
"luxon": "~2.3.0",
|
|
"xml2js": "^0.4.23"
|
|
}
|
|
}
|