mirror of
https://github.com/hans/obsidian-citation-plugin.git
synced 2022-05-23 09:36:41 +03:00
74 lines
1.9 KiB
JSON
74 lines
1.9 KiB
JSON
{
|
|
"name": "obsidian-citation-plugin",
|
|
"version": "0.4.4",
|
|
"description": "Automatically search and insert citations from a Zotero library",
|
|
"main": "main.js",
|
|
"scripts": {
|
|
"dev": "rollup --config rollup.config.js -w",
|
|
"build": "rollup --config rollup.config.js",
|
|
"lint": "eslint . --ext .ts,.tsx",
|
|
"test": "jest",
|
|
"doc": "typedoc src/types.ts",
|
|
"release": "standard-version"
|
|
},
|
|
"standard-version": {
|
|
"bumpFiles": [
|
|
"manifest.json"
|
|
]
|
|
},
|
|
"keywords": [],
|
|
"author": "Jon Gauthier",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@rollup/plugin-commonjs": "^15.1.0",
|
|
"@rollup/plugin-json": "^4.1.0",
|
|
"@rollup/plugin-node-resolve": "^9.0.0",
|
|
"@rollup/plugin-replace": "^2.3.4",
|
|
"@rollup/plugin-typescript": "^6.0.0",
|
|
"@types/jest": "^26.0.20",
|
|
"@types/lodash": "^4.14.167",
|
|
"@types/node": "^14.14.2",
|
|
"@typescript-eslint/eslint-plugin": "^4.10.0",
|
|
"@typescript-eslint/parser": "^4.10.0",
|
|
"codemirror": "^5.58.3",
|
|
"eslint": "^7.15.0",
|
|
"eslint-config-prettier": "^7.0.0",
|
|
"eslint-plugin-prettier": "^3.3.0",
|
|
"husky": "^4.3.6",
|
|
"jest": "^26.6.3",
|
|
"lodash": "^4.17.20",
|
|
"obsidian": "git+https://github.com/obsidianmd/obsidian-api.git#master",
|
|
"prettier": "^2.2.1",
|
|
"rollup": "^2.32.1",
|
|
"rollup-plugin-web-worker-loader": "^1.5.0",
|
|
"ts-jest": "^26.4.4",
|
|
"tslib": "^2.0.3",
|
|
"typedoc": "^0.20.14",
|
|
"typescript": "^4.1.3"
|
|
},
|
|
"dependencies": {
|
|
"@retorquere/bibtex-parser": "^3.2.30",
|
|
"chokidar": "^3.5.0",
|
|
"handlebars": "^4.7.6",
|
|
"open": "^7.3.0",
|
|
"promise-worker": "^2.0.1"
|
|
},
|
|
"lint-staged": {
|
|
"*.ts": "eslint --fix",
|
|
"*.json": "prettier --write"
|
|
},
|
|
"jest": {
|
|
"moduleNameMapper": {
|
|
"src/(.*)": "<rootDir>/src/$1"
|
|
},
|
|
"moduleFileExtensions": [
|
|
"js",
|
|
"ts",
|
|
"d.ts"
|
|
],
|
|
"transform": {
|
|
"^.+\\.ts$": "ts-jest"
|
|
}
|
|
}
|
|
}
|