2019-06-23 03:35:23 -07:00
|
|
|
{
|
2021-03-26 01:06:26 -07:00
|
|
|
"name": "n8n-workflow",
|
2022-10-28 07:21:23 -07:00
|
|
|
"version": "0.122.1",
|
2021-03-26 01:06:26 -07:00
|
|
|
"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"
|
|
|
|
},
|
2022-09-23 07:14:28 -07:00
|
|
|
"main": "dist/src/index.js",
|
|
|
|
"module": "src/index.ts",
|
2021-03-26 01:06:26 -07:00
|
|
|
"types": "dist/src/index.d.ts",
|
2022-09-23 07:14:28 -07:00
|
|
|
"exports": {
|
|
|
|
".": {
|
|
|
|
"require": "./dist/src/index.js",
|
|
|
|
"import": "./src/index.ts",
|
|
|
|
"types": "./dist/src/index.d.ts"
|
|
|
|
},
|
|
|
|
"./*": "./*"
|
|
|
|
},
|
2021-03-26 01:06:26 -07:00
|
|
|
"scripts": {
|
|
|
|
"dev": "npm run watch",
|
|
|
|
"build": "tsc",
|
2021-08-29 11:58:11 -07:00
|
|
|
"format": "cd ../.. && node_modules/prettier/bin-prettier.js packages/workflow/**/**.ts --write",
|
2022-09-12 02:41:50 -07:00
|
|
|
"lint": "eslint .",
|
|
|
|
"lintfix": "eslint . --fix",
|
2021-03-26 01:06:26 -07:00
|
|
|
"watch": "tsc --watch",
|
2022-06-17 22:09:37 -07:00
|
|
|
"test": "jest",
|
|
|
|
"test:dev": "jest --watch"
|
2021-03-26 01:06:26 -07:00
|
|
|
},
|
|
|
|
"files": [
|
2022-09-23 07:14:28 -07:00
|
|
|
"dist/**/*"
|
2021-03-26 01:06:26 -07:00
|
|
|
],
|
|
|
|
"devDependencies": {
|
2022-09-12 02:41:50 -07:00
|
|
|
"@n8n_io/eslint-config": "",
|
2021-03-26 01:06:26 -07:00
|
|
|
"@types/express": "^4.17.6",
|
2022-03-13 01:34:44 -08:00
|
|
|
"@types/jmespath": "^0.15.0",
|
2021-03-26 01:06:26 -07:00
|
|
|
"@types/lodash.get": "^4.4.6",
|
2022-02-05 13:55:43 -08:00
|
|
|
"@types/lodash.merge": "^4.6.6",
|
2022-02-26 02:18:08 -08:00
|
|
|
"@types/lodash.set": "^4.3.6",
|
2022-06-17 22:09:37 -07:00
|
|
|
"@types/luxon": "^2.0.9",
|
2022-06-20 15:17:18 -07:00
|
|
|
"@types/node": "^16.11.22",
|
2021-04-30 18:42:32 -07:00
|
|
|
"@types/xml2js": "^0.4.3",
|
2021-08-29 11:58:11 -07:00
|
|
|
"prettier": "^2.3.2",
|
2022-10-05 04:36:09 -07:00
|
|
|
"typescript": "~4.8.0"
|
2021-03-26 01:06:26 -07:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2022-07-09 23:53:04 -07:00
|
|
|
"@n8n_io/riot-tmpl": "^1.0.1",
|
2022-03-13 01:34:44 -08:00
|
|
|
"jmespath": "^0.16.0",
|
2021-03-26 01:06:26 -07:00
|
|
|
"lodash.get": "^4.4.2",
|
2021-05-19 16:07:26 -07:00
|
|
|
"lodash.isequal": "^4.5.0",
|
2022-02-05 13:55:43 -08:00
|
|
|
"lodash.merge": "^4.6.2",
|
|
|
|
"lodash.set": "^4.3.2",
|
2022-10-13 05:28:02 -07:00
|
|
|
"luxon": "~2.3.0",
|
2021-04-30 18:29:44 -07:00
|
|
|
"xml2js": "^0.4.23"
|
2021-03-26 01:06:26 -07:00
|
|
|
}
|
2019-06-23 03:35:23 -07:00
|
|
|
}
|