tridactyl/package.json

95 lines
2.9 KiB
JSON
Raw Normal View History

{
"name": "tridactyl",
"version": "0.1.0",
"description": "Vimperator/Pentadactyl successor",
"browser": {
"url": false,
"fs": false,
"https": false,
"http": false,
"path": false,
"timers": false,
"stream": "stream-browserify"
},
"dependencies": {
"@mozilla/readability": "^0.5.0",
"cleanslate": "^0.10.1",
"compute-scroll-into-view": "^3.0.0",
"csp-serdes": "github:cmcaine/csp-serdes",
"css": "^3.0.0",
"editor-adapter": "^0.0.5",
"esbuild": "^0.19.9",
"fuse.js": "^7.0.0",
"nearley": "^2.20.1",
"ramda": "^0.29.1",
2019-11-26 14:22:34 +00:00
"semver-compare": "^1.0.0",
2021-01-01 16:10:03 +01:00
"stream-browserify": "^3.0.0",
"tridactyl-arg": "git+https://github.com/GHolk/arg.git#v5.1.0",
2020-12-09 17:36:06 +01:00
"tsdef": "^0.0.14",
"typedoc": "^0.19.2",
"typedoc-default-themes": "^0.12.10",
"xss": "^1.0.14"
},
"devDependencies": {
"@types/css": "0.0.37",
"@types/firefox-webext-browser": "^111.0.1",
"@types/jest": "^27.5.0",
"@types/nearley": "^2.11.5",
"@types/selenium-webdriver": "^4.1.10",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/eslint-plugin-tslint": "^6.19.1",
"@typescript-eslint/parser": "^4.33.0",
"command-line-args": "^5.2.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jsdoc": "^46.9.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-sonarjs": "^0.23.0",
"geckodriver": "^4.2.1",
"jasmine-fail-fast": "^2.0.1",
"jest": "^25.5.4",
"jest-webextension-mock": "^3.8.9",
"marked": "^11.1.1",
"prettier": "^3.1.0",
"selenium-webdriver": "^4.7.1",
"ts-jest": "^25.5.1",
"tslint": "^5.20.1",
"tslint-etc": "^1.13.10",
2020-06-15 20:28:15 +02:00
"tslint-sonarts": "^1.9.0",
"typescript": "^3.9.10",
2024-01-29 12:34:27 +01:00
"web-ext": "^7.10.0"
},
"scripts": {
"build": "sh scripts/build.sh",
"rebuild": "sh scripts/build.sh --quick",
"clean": "rm -rf build generated",
"forrest-run": "yarn run run",
"jest": "jest --bail --runInBand",
"lint": "bash hooks/pre-commit",
"make-zip": "web-ext build --source-dir build --overwrite-dest",
"pretty": "bash scripts/pretty.sh",
"run": "web-ext run -s build/ -u '0.0g.gg'",
"test": "yarn run build && web-ext build --source-dir ./build --overwrite-dest && jest --silent",
2019-05-31 16:48:53 +01:00
"update-buildsystem": "rm -rf src/node_modules; yarn run clean",
"watch": "echo 'watch is broken, use build instead'; exit 0;",
"install": "git config core.hookspath hooks/"
},
2017-10-06 00:06:50 +01:00
"author": "Colin Caine",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/tridactyl/tridactyl.git"
2017-10-06 00:06:50 +01:00
},
"keywords": [
"webextension",
"webext",
"vim",
"firefox"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/tridactyl/tridactyl/issues"
2017-10-06 00:06:50 +01:00
},
"homepage": "https://github.com/tridactyl/tridactyl#readme"
}