n8n/packages/workflow/package.json

57 lines
1.4 KiB
JSON
Raw Normal View History

2019-06-23 03:35:23 -07:00
{
"name": "n8n-workflow",
2019-08-09 02:21:12 -07:00
"version": "0.9.0",
2019-06-23 03:35:23 -07:00
"description": "Workflow base code of n8n",
2019-06-23 08:55:43 -07:00
"license": "SEE LICENSE IN LICENSE.md",
2019-06-23 03:35:23 -07:00
"author": {
"name": "Jan Oberhauser",
"email": "jan@n8n.io"
},
"repository": {
"type": "git",
"url": "git+https://github.com/n8n-io/n8n.git"
},
2019-06-23 03:35:23 -07:00
"main": "dist/src/index",
"types": "dist/src/index.d.ts",
"scripts": {
"build": "tsc",
"tslint": "tslint -p tsconfig.json -c tslint.json",
"watch": "tsc --watch",
"test": "jest"
},
"files": [
"dist"
],
"devDependencies": {
"@types/express": "^4.16.1",
"@types/jest": "^23.3.2",
"@types/lodash.get": "^4.4.5",
"@types/node": "^10.10.1",
"jest": "^23.6.0",
"ts-jest": "^23.10.1",
"tslint": "^5.17.0",
2019-06-24 01:28:18 -07:00
"typescript": "~3.5.2"
2019-06-23 03:35:23 -07:00
},
"dependencies": {
"lodash.get": "^4.4.2",
"riot-tmpl": "^3.0.8"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testURL": "http://localhost/",
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"testPathIgnorePatterns": [
"/dist/",
"/node_modules/"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
]
}
}