2021-02-16 20:34:58 +01:00
|
|
|
{
|
|
|
|
"name": "focalboard-trello-importer",
|
|
|
|
"version": "1.0.0",
|
|
|
|
"private": true,
|
|
|
|
"description": "",
|
|
|
|
"main": "importTrello.js",
|
|
|
|
"scripts": {
|
2021-02-18 00:55:59 +01:00
|
|
|
"lint": "eslint --ext .tsx,.ts . --quiet --cache",
|
|
|
|
"fix": "eslint --ext .tsx,.ts . --quiet --fix --cache",
|
2021-03-02 22:21:55 +01:00
|
|
|
"test": "ts-node importTrello.ts -i test/trello.json -o test/trello-import.focalboard",
|
|
|
|
"debug:test": "node --inspect=5858 -r ts-node/register importTrello.ts -i test/trello.json -o test/trello-import.focalboard"
|
2021-02-16 20:34:58 +01:00
|
|
|
},
|
|
|
|
"keywords": [],
|
|
|
|
"author": "",
|
|
|
|
"devDependencies": {
|
|
|
|
"@types/minimist": "^1.2.1",
|
|
|
|
"@types/node": "^14.14.28",
|
|
|
|
"@typescript-eslint/eslint-plugin": "^4.15.0",
|
|
|
|
"@typescript-eslint/parser": "^4.15.0",
|
|
|
|
"eslint": "^7.20.0",
|
|
|
|
"ts-node": "^9.1.1",
|
|
|
|
"typescript": "^4.1.5"
|
|
|
|
},
|
|
|
|
"dependencies": {
|
|
|
|
"minimist": "^1.2.5"
|
|
|
|
}
|
|
|
|
}
|