This repository has been archived by the owner on Sep 21, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
51 lines (51 loc) · 1.62 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
{
"name": "zotero-auto-index",
"version": "5.0.9",
"description": "Zotero Auto Index",
"main": "index.js",
"scripts": {
"lint": "eslint . --ext .ts --cache --cache-location .eslintcache/",
"build": "parallel --ungroup ::: 'npm run lint' 'node esbuild.js' 'tsc --noEmit'",
"postbuild": "zotero-plugin-zipup build zotero-auto-index",
"release": "zotero-plugin-release",
"postversion": "git push --follow-tags",
"start": "zotero-start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/retorquere/zotero-auto-index.git"
},
"author": {
"name": "Emiliano Heyns",
"email": "[email protected]"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/retorquere/zotero-auto-index/issues"
},
"homepage": "https://github.com/retorquere/zotero-auto-index#readme",
"dependencies": {
"@types/mocha": "^9.1.0",
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@typescript-eslint/parser": "^5.16.0",
"esbuild": "^0.14.27",
"eslint": "^8.11.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsdoc": "^38.0.6",
"eslint-plugin-prefer-arrow": "^1.2.3",
"jszip": "^3.7.1",
"mkdirp": "^1.0.4",
"rimraf": "^3.0.2",
"ts-node": "^10.7.0",
"typescript": "^4.6.3",
"zotero-plugin": "^1.2.3"
},
"xpi": {
"name": "Zotero AutoIndex",
"updateLink": "https://github.com/retorquere/zotero-auto-index/releases/download/v{version}/zotero-auto-index-{version}.xpi",
"releaseURL": "https://github.com/retorquere/zotero-auto-index/releases/download/release/"
},
"devDependencies": {
"webpack-cli": "^4.9.2"
}
}