bismuth/package.json

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

95 lines
2.5 KiB
JSON
Raw Normal View History

2019-04-03 17:57:45 +03:00
{
2021-08-28 11:20:19 +03:00
"name": "bismuth",
2021-08-28 17:41:31 +03:00
"version": "0.9.0",
2019-04-03 17:57:45 +03:00
"description": "A dynamic tiling extension for KWin",
2021-08-28 11:20:19 +03:00
"main": "bismuth.js",
2019-04-03 17:57:45 +03:00
"directories": {
"build": "build",
2019-04-03 17:57:45 +03:00
"test": "test"
},
"config": {
"build_dir": "build"
},
2019-04-03 17:57:45 +03:00
"devDependencies": {
2021-08-28 00:18:12 +03:00
"@typescript-eslint/eslint-plugin": "^4.29.3",
"@typescript-eslint/parser": "^4.29.3",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
2021-08-27 19:57:11 +03:00
"mocha": "^6.0.0",
2021-08-27 23:06:44 +03:00
"prettier": "2.3.2",
2021-08-27 22:40:16 +03:00
"typedoc": "^0.21.6",
"typescript": "^4.3.5"
2019-04-03 17:57:45 +03:00
},
"scripts": {
"clean": "bin/clean.sh",
"build": "bin/build.sh",
"prestart": "npm run build",
"start": "bin/start.sh",
"stop": "bin/stop.sh",
"prepackage": "npm run build",
"package": "bin/package.sh",
2021-08-28 14:18:47 +03:00
"prescript-install": "npm run package",
"script-install": "bin/install.sh",
"script-uninstall": "bin/uninstall.sh",
"preinstall-and-restart-kwin-x11": "npm run script-install",
"install-and-restart-kwin-x11": "kwin_x11 --replace",
"postinstall-and-restart-kwin-x11": "bash -ic \"kwin_x11 --replace & disown\"",
2021-08-27 19:57:11 +03:00
"docs": "npx typedoc --out $npm_package_config_build_dir/docs",
2019-04-03 17:57:45 +03:00
"test": "mocha 'test/*.spec.js'"
},
"repository": {
"type": "git",
2021-08-28 11:20:19 +03:00
"url": "git+https://github.com/gikari/bismuth.git"
2019-04-03 17:57:45 +03:00
},
"author": "Eon S. Jeon <esjeon@hyunmu.am>",
2021-08-28 11:20:19 +03:00
"contributors": [
"Mikhail Zolotukhin <mail@genda.life> (https://genda.life)"
],
2019-04-03 17:57:45 +03:00
"license": "MIT",
"bugs": {
2021-08-28 11:20:19 +03:00
"url": "https://github.com/gikari/bismuth/issues"
2019-04-03 17:57:45 +03:00
},
2021-08-28 11:20:19 +03:00
"homepage": "https://github.com/gikari/bismuth#readme",
2021-08-28 00:18:12 +03:00
"eslintConfig": {
"root": true,
"ignorePatterns": [
"/build"
],
"env": {
"es6": true
},
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": "tsconfig.json",
"sourceType": "module"
},
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"plugin:@typescript-eslint/recommended-requiring-type-checking",
"prettier"
],
"plugins": [
"@typescript-eslint",
"eslint-plugin-jsdoc",
"eslint-plugin-prefer-arrow"
],
"rules": {
"curly": "error",
"@typescript-eslint/naming-convention": [
"error",
{
"selector": [
"variable"
],
"leadingUnderscore": "allow"
}
],
"@typescript-eslint/prefer-for-of": "off",
"one-var": "error",
"max-classes-per-file": "off",
"no-cond-assign": "error"
}
}
}