-
Notifications
You must be signed in to change notification settings - Fork 83
/
package.json
73 lines (73 loc) · 1.9 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "obsidian-citation-plugin",
"version": "0.4.5",
"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"
}
}
}