-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.66 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
{
"name": "zotero-erdos",
"version": "1.2.3",
"description": "Determine shortest path between given authors.",
"scripts": {
"lint": "eslint . --ext .ts --cache --cache-location .eslintcache/",
"prebuild": "npm run lint",
"build": "rm -rf build && tsc --noEmit && node esbuild.js",
"postbuild": "zotero-plugin-zipup build zotero-erdos",
"release": "zotero-plugin-release",
"postversion": "git push --follow-tags",
"start": "./start.py"
},
"repository": {
"type": "git",
"url": "https://github.com/retorquere/zotero-erdos.git"
},
"author": {
"name": "Emiliano Heyns",
"email": "[email protected]"
},
"bugs": {
"url": "https://github.com/retorquere/zotero-erdos/issues"
},
"homepage": "https://github.com/retorquere/zotero-erdos",
"devDependencies": {
"@types/mocha": "^9.1.0",
"@types/node": "^17.0.17",
"@typescript-eslint/eslint-plugin": "^5.11.0",
"@typescript-eslint/parser": "^5.11.0",
"esbuild": "^0.14.21",
"eslint": "^8.8.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsdoc": "^37.8.2",
"eslint-plugin-prefer-arrow": "^1.2.3",
"graphology-types": "^0.24.0",
"mkdirp": "^1.0.4",
"rimraf": "^3.0.2",
"ts-node": "^10.5.0",
"typescript": "^4.5.5",
"zotero-plugin": "^1.0.64"
},
"xpi": {
"name": "Erdos for Zotero",
"updateLink": "https://github.com/retorquere/zotero-erdos/releases/download/v{version}/zotero-erdos-{version}.xpi",
"releaseURL": "https://github.com/retorquere/zotero-erdos/releases/download/release/"
},
"dependencies": {
"eventemitter2": "^6.4.5",
"graphology": "^0.24.0",
"nanoq": "^1.1.0"
}
}