2019-06-23 03:35:23 -07:00
|
|
|
{
|
2021-03-26 01:06:26 -07:00
|
|
|
"name": "n8n-workflow",
|
2022-12-27 07:17:52 -08:00
|
|
|
"version": "0.131.2",
|
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-11-09 06:25:00 -08:00
|
|
|
"main": "dist/index.js",
|
2022-09-23 07:14:28 -07:00
|
|
|
"module": "src/index.ts",
|
2022-11-09 06:25:00 -08:00
|
|
|
"types": "dist/index.d.ts",
|
2022-09-23 07:14:28 -07:00
|
|
|
"exports": {
|
|
|
|
".": {
|
2022-11-09 06:25:00 -08:00
|
|
|
"require": "./dist/index.js",
|
2022-09-23 07:14:28 -07:00
|
|
|
"import": "./src/index.ts",
|
2022-11-09 06:25:00 -08:00
|
|
|
"types": "./dist/index.d.ts"
|
2022-09-23 07:14:28 -07:00
|
|
|
},
|
|
|
|
"./*": "./*"
|
|
|
|
},
|
2021-03-26 01:06:26 -07:00
|
|
|
"scripts": {
|
2022-11-09 08:32:05 -08:00
|
|
|
"clean": "rimraf dist .turbo",
|
|
|
|
"dev": "pnpm watch",
|
2022-11-09 06:25:00 -08:00
|
|
|
"typecheck": "tsc",
|
|
|
|
"build": "tsc -p tsconfig.build.json",
|
2022-11-22 05:11:29 -08:00
|
|
|
"format": "prettier --write . --ignore-path ../../.prettierignore",
|
2022-12-23 10:09:52 -08:00
|
|
|
"lint": "eslint --quiet .",
|
2022-09-12 02:41:50 -07:00
|
|
|
"lintfix": "eslint . --fix",
|
2022-11-23 07:20:28 -08:00
|
|
|
"watch": "tsc -p tsconfig.build.json --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": {
|
|
|
|
"@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-11-23 07:20:28 -08:00
|
|
|
"@types/lodash.isequal": "^4.5.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-11-09 08:32:05 -08:00
|
|
|
"@types/xml2js": "^0.4.3"
|
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
|
|
|
}
|