2019-06-23 03:35:23 -07:00
|
|
|
{
|
2021-03-26 01:06:26 -07:00
|
|
|
"name": "n8n-workflow",
|
2021-03-26 01:10:33 -07:00
|
|
|
"version": "0.55.0",
|
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"
|
|
|
|
},
|
|
|
|
"main": "dist/src/index",
|
|
|
|
"types": "dist/src/index.d.ts",
|
|
|
|
"scripts": {
|
|
|
|
"dev": "npm run watch",
|
|
|
|
"build": "tsc",
|
|
|
|
"tslint": "tslint -p tsconfig.json -c tslint.json",
|
|
|
|
"tslintfix": "tslint --fix -p tsconfig.json -c tslint.json",
|
|
|
|
"watch": "tsc --watch",
|
|
|
|
"test": "jest"
|
|
|
|
},
|
|
|
|
"files": [
|
|
|
|
"dist"
|
|
|
|
],
|
|
|
|
"devDependencies": {
|
|
|
|
"@types/express": "^4.17.6",
|
|
|
|
"@types/jest": "^26.0.13",
|
|
|
|
"@types/lodash.get": "^4.4.6",
|
2021-04-15 14:57:20 -07:00
|
|
|
"@types/node": "^14.14.40",
|
2021-03-26 01:06:26 -07:00
|
|
|
"jest": "^26.4.2",
|
|
|
|
"ts-jest": "^26.3.0",
|
|
|
|
"tslint": "^6.1.2",
|
|
|
|
"typescript": "~3.9.7"
|
|
|
|
},
|
|
|
|
"dependencies": {
|
|
|
|
"lodash.get": "^4.4.2",
|
|
|
|
"riot-tmpl": "^3.0.8"
|
|
|
|
},
|
|
|
|
"jest": {
|
|
|
|
"transform": {
|
|
|
|
"^.+\\.tsx?$": "ts-jest"
|
2019-06-23 03:35:23 -07:00
|
|
|
},
|
2021-03-26 01:06:26 -07:00
|
|
|
"testURL": "http://localhost/",
|
|
|
|
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
|
|
|
|
"testPathIgnorePatterns": [
|
|
|
|
"/dist/",
|
|
|
|
"/node_modules/"
|
2019-06-23 03:35:23 -07:00
|
|
|
],
|
2021-03-26 01:06:26 -07:00
|
|
|
"moduleFileExtensions": [
|
|
|
|
"ts",
|
|
|
|
"tsx",
|
|
|
|
"js",
|
|
|
|
"json"
|
|
|
|
]
|
|
|
|
}
|
2019-06-23 03:35:23 -07:00
|
|
|
}
|