nathonius_obsidian-trello/package.json
Nathan Smith b968361d0c work
2021-12-10 16:44:06 -05:00

56 lines
1.7 KiB
JSON

{
"name": "obsidian-trello",
"version": "1.6.0",
"description": "Connect an existing or new Trello card to an Obsidian note. Once connected, see basic info, add and view comments, and check off checklist items.",
"repository": {
"type": "git",
"url": "https://github.com/OfficerHalf/obsidian-trello/"
},
"main": "main.js",
"scripts": {
"dev": "rollup --config rollup.config.js",
"build": "rollup --config rollup.config.js --environment BUILD:production",
"prepare": "husky install",
"test": "tsc -p tsconfig.spec.json && jasmine"
},
"keywords": [],
"author": {
"name": "OfficerHalf",
"url": "https://nathan-smith.org/"
},
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/preset-typescript": "^7.16.0",
"@babel/register": "^7.16.0",
"@rollup/plugin-commonjs": "^18.0.0",
"@rollup/plugin-node-resolve": "^11.2.1",
"@rollup/plugin-replace": "^3.0.0",
"@rollup/plugin-typescript": "^8.2.1",
"@types/jasmine": "^3.10.2",
"@types/node": "^14.14.37",
"@typescript-eslint/eslint-plugin": "^4.31.0",
"@typescript-eslint/parser": "^4.31.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"husky": "^7.0.2",
"jasmine": "^3.10.0",
"lint-staged": "^11.1.2",
"obsidian": "^0.12.0",
"prettier": "^2.4.0",
"rollup": "^2.32.1",
"rollup-plugin-scss": "^3.0.0",
"rollup-plugin-terser": "^7.0.2",
"sass": "^1.38.0",
"tslib": "^2.2.0",
"typescript": "^4.3.5"
},
"dependencies": {
"nanoid": "^3.1.25",
"rxjs": "^7.3.0"
},
"lint-staged": {
"*.ts": "eslint --cache --fix",
"*.{ts,scss}": "prettier --write"
}
}