-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.54 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.54 KB
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
{
"name": "@thunderbird/webext-schema-generator",
"private": true,
"version": "1.0.0",
"description": "Simple typings generator for Thunderbird WebExtension schema",
"main": "get_thunderbird_schema_files.js",
"type": "module",
"bin": {
"get-thunderbird-schema-files": "get_thunderbird_schema_files.js"
},
"bugs": {
"url": "https://github.com/thunderbird/webext-schemas-generator/issues"
},
"license": "MPL-2.0",
"author": " John Bieling <john.bieling@gmx.de>",
"contributors": [
"John Bieling <john.bieling@gmx.de>",
"Arnd Issler <email@arndissler.net>"
],
"scripts": {
"start": "node get_thunderbird_schema_files.js",
"lint": "eslint . --ext .js,.mjs",
"lint:fix": "eslint . --ext .js,.mjs --fix",
"lint:format": "npm run lint:fix && npm run format",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepare": "husky"
},
"dependencies": {
"@mdn/browser-compat-data": "^6.0.22",
"bent": "^7.3.12",
"comment-json": "^4.2.4",
"extract-zip": "^2.0.1",
"yaml": "^2.7.1"
},
"devDependencies": {
"@babel/eslint-parser": "^7.24.1",
"@babel/preset-env": "^7.24.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-node": "^11.1.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5"
},
"engines": {
"node": ">=18"
},
"lint-staged": {
"*.{js,mjs}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,yml,yaml}": [
"prettier --write"
]
}
}