-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
95 lines (95 loc) · 2.08 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "zotero-google-scholar-citation-count",
"version": "4.1.1",
"bugs": {
"url": "https://github.com/justinribeiro/zotero-google-scholar-citation-count/issues"
},
"license": "MPLv2",
"repository": {
"type": "git",
"url": "git@github.com:justinribeiro/zotero-google-scholar-citation-count.git"
},
"contributors": [
{
"name": "Justin Ribeiro",
"email": "justin@justinribeiro.com",
"url": "https://justinribeiro.com"
},
{
"name": "Anton Beloglazov",
"url": "https://beloglazov.info/"
},
{
"name": "MaxKuehn",
"url": "https://github.com/MaxKuehn"
},
{
"name": "tete1030",
"url": "https://github.com/tete1030"
},
{
"name": "Nico",
"url": "https://github.com/nico-zck"
},
{
"name": "bitnikrbt",
"url": "https://github.com/bitnikrbt"
},
{
"name": "drevicko",
"url": "https://github.com/drevicko"
}
],
"scripts": {
"package": "npm run clean && bash -c ./build.sh",
"clean": "rm -rf coverage build",
"test": "jest",
"make-badges": "istanbul-badges-readme"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"assert": ">=2.1.0",
"core-js": "^3.39.0",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.8.3",
"istanbul-badges-readme": "^1.9.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"mocha": "^10.8.2",
"nyc": "^17.1.0",
"prettier": "3.3.3",
"vitest": "^2.1.4"
},
"prettier": {
"singleQuote": true
},
"eslintConfig": {
"extends": [
"eslint:recommended",
"prettier"
],
"plugins": [
"jest"
],
"parserOptions": {
"ecmaVersion": 2020,
"sourceType": "module"
},
"env": {
"browser": true,
"node": true,
"jest/globals": true,
"es6": true
},
"globals": {
"$__gscc": false,
"Components": false,
"Zotero": false,
"ZoteroPane": false,
"ZoteroStandalone": false,
"Services": false
}
},
"private": true
}