-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpackage.json
33 lines (33 loc) · 1.13 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
{
"name": "gnome-shell-extension-ddterm",
"private": true,
"homepage": "https://github.com/ddterm/gnome-shell-extension-ddterm",
"bugs": "https://github.com/ddterm/gnome-shell-extension-ddterm/issues",
"license": "GPL-3.0-or-later",
"repository": {
"type": "git",
"url": "git+https://github.com/ddterm/gnome-shell-extension-ddterm.git"
},
"devDependencies": {
"eslint": "9.19.0",
"eslint-formatter-checkstyle": "^8.40.0",
"eslint-formatter-stylish": "^8.40.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsdoc": "50.6.3",
"markdownlint-cli2": "^0.17.0",
"npm-run-all2": "^7.0.2"
},
"scripts": {
"lint:eslint": "eslint .",
"lint:markdownlint": "markdownlint-cli2",
"lint:flake8": "tox -e flake8",
"lint:reuse": "tox -e reuse",
"lint": "run-s lint:*",
"build:esm": "tox -e meson",
"build:legacy": "tox -e meson-legacy",
"build": "run-s build:*",
"test:esm": "tox -e meson-test",
"test:legacy": "tox -e meson-test-legacy",
"test": "run-s test:*"
}
}