{ "name": "n8n-core", "version": "0.126.0", "description": "Core functionality 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", "types": "dist/src/index.d.ts", "scripts": { "build": "tsc", "dev": "npm run watch", "format": "cd ../.. && node_modules/prettier/bin-prettier.js packages/core/**/**.ts --write", "lint": "cd ../.. && node_modules/eslint/bin/eslint.js packages/core", "lintfix": "cd ../.. && node_modules/eslint/bin/eslint.js packages/core --fix", "watch": "tsc --watch", "test": "jest" }, "files": [ "dist" ], "devDependencies": { "@types/cron": "~1.7.1", "@types/crypto-js": "^4.0.1", "@types/express": "^4.17.6", "@types/jest": "^27.4.0", "@types/lodash.get": "^4.4.6", "@types/mime-types": "^2.1.0", "@types/node": "^16.11.22", "@types/request-promise-native": "~1.0.15", "@types/uuid": "^8.3.4", "jest": "^27.4.7", "source-map-support": "^0.5.9", "ts-jest": "^27.1.3", "tslint": "^6.1.2", "typescript": "~4.6.0" }, "dependencies": { "axios": "^0.21.1", "client-oauth2": "^4.2.5", "cron": "~1.7.2", "crypto-js": "~4.1.1", "file-type": "^14.6.2", "flatted": "^3.2.4", "form-data": "^4.0.0", "lodash.get": "^4.4.2", "mime-types": "^2.1.27", "n8n-workflow": "~0.108.0", "oauth-1.0a": "^2.2.6", "p-cancelable": "^2.0.0", "qs": "^6.10.1", "request": "^2.88.2", "request-promise-native": "^1.0.7", "uuid": "^8.3.2" }, "jest": { "transform": { "^.+\\.tsx?$": "ts-jest" }, "testURL": "http://localhost/", "testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$", "testPathIgnorePatterns": [ "/dist/", "/node_modules/" ], "moduleFileExtensions": [ "ts", "tsx", "js", "json", "node" ] } }