-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
80 lines (80 loc) · 2.35 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
{
"name": "doi-resolver",
"version": "7.2.1",
"description": "A browser extension to quickly resolve digital object identifiers to their web destinations",
"private": true,
"type": "module",
"scripts": {
"lint": "eslint .",
"check-types": "tsc --noEmit --skipLibCheck",
"format": "prettier --write .",
"build": "tsx build/build.ts",
"build-debug": "tsx build/build.ts --debug",
"update-csl": "tsx build/update-csl.ts",
"pkg": "tsx build/pkg.ts",
"clean": "tsx build/clean.ts",
"release": "npm run lint && npm run check-types && npm run clean && npm run build && npm run pkg",
"test": "playwright test"
},
"repository": "github:mdmower/doi-resolver",
"keywords": [
"doi",
"resolve",
"resolver",
"qr",
"citation",
"addon",
"extension"
],
"author": "Matthew D. Mower <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/mdmower/doi-resolver/issues"
},
"homepage": "https://github.com/mdmower/doi-resolver#readme",
"dependencies": {
"@jaames/iro": "^5.5.2",
"@popperjs/core": "^2.11.8",
"bootstrap": "^5.3.3",
"citeproc": "^2.4.63",
"csv-stringify": "^6.5.2"
},
"devDependencies": {
"@eslint/js": "^9.15.0",
"@fullhuman/postcss-purgecss": "^7.0.2",
"@playwright/test": "~1.48.2",
"@types/archiver": "^6.0.3",
"@types/bootstrap": "^5.2.10",
"@types/chrome": "^0.0.283",
"@types/eslint__js": "^8.42.3",
"@types/minimist": "^1.2.5",
"@types/node": "^20.17.7",
"@types/sortablejs": "^1.15.8",
"@xmldom/xmldom": "^0.9.5",
"archiver": "^7.0.1",
"clean-css": "^5.3.3",
"colors": "^1.4.0",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^7.1.2",
"deepmerge": "^4.3.1",
"dompurify": "^3.2.1",
"esbuild-loader": "^4.2.2",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jsdoc": "^50.5.0",
"eslint-plugin-no-unsanitized": "^4.1.2",
"eslint-plugin-playwright": "^2.1.0",
"eslint-plugin-prettier": "^5.2.1",
"fast-deep-equal": "^3.1.3",
"html-bundler-webpack-plugin": "^4.4.2",
"minimist": "^1.2.8",
"postcss-loader": "^8.1.1",
"prettier": "^3.3.3",
"sass": "1.81.0",
"sass-loader": "^16.0.3",
"tsx": "^4.19.2",
"typescript": "~5.6.3",
"typescript-eslint": "^8.15.0",
"webpack": "^5.96.1"
}
}