-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 2.02 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
{
"name": "zotero-nexus",
"version": "0.1.0-beta.4",
"description": "Access scientific literature using standard template construct, an IPFS-backed website for nexus search",
"scripts": {
"lint": "eslint . --ext .ts --cache --cache-location .eslintcache/",
"prebuild": "npm run lint",
"build": "tsc --noEmit && node esbuild.js",
"postbuild": "zotero-plugin-zipup build zotero-nexus",
"release": "zotero-plugin-release",
"postversion": "git push --follow-tags",
"test": "nyc mocha -r ts-node/register 'tests/**/*.ts'",
"coverage": "nyc -r lcov npm run test"
},
"repository": {
"type": "git",
"url": "https://github.com/aokellermann/zotero-nexus.git"
},
"author": {
"name": "aokellermann",
"email": "[email protected]"
},
"bugs": {
"url": "https://github.com/aokellermann/zotero-nexus/issues"
},
"homepage": "https://github.com/aokellermann/zotero-nexus",
"xpi": {
"name": "Nexus Plugin for Zotero",
"updateLink": "https://github.com/aokellermann/zotero-nexus/releases/download/v{version}/zotero-nexus-{version}.xpi",
"releaseURL": "https://github.com/aokellermann/zotero-nexus/releases/download/release/",
"iconURL": "chrome://zotero-nexus/skin/nexus-logo.svg"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@types/chai": "^4.2.21",
"@types/jspath": "^0.4.2",
"@types/mocha": "^8.2.3",
"@types/node": "^16.4.1",
"@typescript-eslint/eslint-plugin": "^4.28.3",
"@typescript-eslint/parser": "^4.28.3",
"chai": "^4.3.4",
"esbuild": "^0.12.15",
"eslint": "^7.30.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsdoc": "^35.4.3",
"eslint-plugin-prefer-arrow": "^1.2.3",
"jsdom": "^17.0.0",
"mkdirp": "^1.0.4",
"mocha": "^9.0.3",
"nyc": "^15.1.0",
"rimraf": "^3.0.2",
"sinon": "^11.1.2",
"source-map-support": "^0.5.19",
"ts-node": "^10.1.0",
"typescript": "^4.3.5",
"zotero-plugin": "^1.2.1"
},
"dependencies": {
"jspath": "^0.4.0"
}
}