-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
118 lines (118 loc) · 2.85 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "certassist",
"version": "1.0.0",
"description": "JavaScript interface to ca.mit.edu and ca.csail.mit.edu",
"homepage": "https://certassist.mit.edu/",
"bugs": "https://github.com/sipb/certassist/issues",
"license": "MIT",
"author": "Anders Kaseorg",
"repository": {
"type": "git",
"url": "https://github.com/sipb/certassist.git"
},
"scripts": {
"build": "webpack --mode=production",
"lint": "tsc && xo && stylelint '**/*.css' && prettier --check . '!**/*.{ts,js}'",
"watch": "webpack --mode=development --watch"
},
"dependencies": {
"@babel/core": "^7.15.5",
"@babel/preset-env": "^7.15.4",
"@babel/preset-typescript": "^7.15.0",
"@babel/register": "^7.15.3",
"@duosecurity/duo_web": "^1.0.5",
"@fortawesome/fontawesome-free": "^6.1.1",
"babel-loader": "^9.0.1",
"core-js": "^3.37.0",
"css-loader": "^7.1.1",
"git-revision-webpack-plugin": "^5.0.0",
"html-webpack-plugin": "^5.3.2",
"mini-css-extract-plugin": "^2.2.2",
"node-forge": "https://github.com/neuland-ingolstadt/forge/archive/64c02566be293cb2b3cdd18f9b322066c2a3929f.tar.gz",
"regenerator-runtime": "^0.14.0",
"ssl-root-cas": "^1.3.1",
"webfonts-loader": "^8.0.0",
"webpack": "^5.52.0",
"webpack-cli": "^5.0.0"
},
"devDependencies": {
"@types/git-revision-webpack-plugin": "^3.0.3",
"@types/node-forge": "^1.0.1",
"prettier": "^3.0.3",
"stylelint": "^16.4.0",
"stylelint-config-standard": "^36.0.0",
"typescript": "^5.0.4",
"xo": "^0.58.0"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"corejs": "3.37",
"useBuiltIns": "usage"
}
],
"@babel/preset-typescript"
]
},
"prettier": {
"bracketSpacing": true,
"singleQuote": false,
"trailingComma": "es5",
"useTabs": false,
"overrides": [
{
"files": "*.ejs",
"options": {
"parser": "html"
}
}
]
},
"stylelint": {
"extends": "stylelint-config-standard",
"rules": {
"media-feature-range-notation": null,
"no-descending-specificity": null
}
},
"xo": {
"envs": [
"browser",
"es6"
],
"prettier": true,
"rules": {
"@typescript-eslint/ban-types": "off",
"@typescript-eslint/naming-convention": "off",
"@typescript-eslint/no-non-null-assertion": "off",
"import/extensions": "off",
"strict": "error"
},
"overrides": [
{
"files": [
"webpack.config.ts"
],
"envs": [
"node"
]
},
{
"files": [
"**/*.font.js"
],
"parserOptions": {
"sourceType": "script"
},
"envs": [
"node"
],
"rules": {
"unicorn/prefer-module": "off"
}
}
]
}
}