-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
52 lines (52 loc) · 1.71 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
{
"name": "zotero-pmcid-fetcher",
"version": "0.0.31",
"description": "PMCID fetcher",
"scripts": {
"lint": "eslint . --cache --cache-location .eslintcache/",
"prebuild": "npm run lint",
"build": "tsc --noEmit && node esbuild.js",
"postbuild": "zotero-plugin-zipup build zotero-pmcid-fetcher",
"release": "zotero-plugin-release",
"postversion": "git push --follow-tags",
"start": "osascript -e 'quit app \"Zotero\"' && zotero-start"
},
"repository": {
"type": "git",
"url": "https://github.com/retorquere/zotero-pmcid-fetcher.git"
},
"author": {
"name": "Emiliano Heyns",
"email": "[email protected]"
},
"bugs": {
"url": "https://github.com/retorquere/zotero-pmcid-fetcher/issues"
},
"homepage": "https://github.com/retorquere/zotero-pmcid-fetcher",
"dependencies": {
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@typescript-eslint/parser": "^7.0.2",
"esbuild": "^0.20.1",
"eslint": "^8.57.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsdoc": "^48.2.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"mkdirp": "^3.0.1",
"npm-run-all": "^4.1.5",
"rimraf": "^5.0.5",
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"zotero-plugin": "^2.0.14",
"zotero-types": "^1.3.18"
},
"xpi": {
"name": "PMCID fetcher for Zotero",
"updateLink": "https://github.com/retorquere/zotero-pmcid-fetcher/releases/download/v{version}/zotero-pmcid-fetcher-{version}.xpi",
"releaseURL": "https://github.com/retorquere/zotero-pmcid-fetcher/releases/download/release/",
"bootstrapped": true
},
"devDependencies": {
"@stylistic/eslint-plugin-js": "^2.7.2",
"@stylistic/eslint-plugin-ts": "^2.7.2"
}
}