tridactyl/package.json

81 lines
2.4 KiB
JSON
Raw Normal View History

{
"name": "tridactyl",
"version": "0.1.0",
"description": "Vimperator/Pentadactyl successor",
"dependencies": {
2018-04-21 23:43:12 +01:00
"@types/css": "0.0.31",
"@types/nearley": "^2.11.1",
"command-line-args": "^5.1.1",
"csp-serdes": "github:cmcaine/csp-serdes",
2018-09-11 22:24:21 +01:00
"css": "^2.2.4",
2019-05-31 14:04:40 +00:00
"flyd": "^0.2.8",
"fuse.js": "^3.6.1",
"immer": "^6.0.2",
2017-11-07 15:21:23 +00:00
"mark.js": "^8.11.1",
"mithril": "^2.0.4",
2020-02-18 21:04:35 +00:00
"rss-parser": "^3.7.5",
"ramda": "^0.27.0",
2019-11-26 14:22:34 +00:00
"semver-compare": "^1.0.0",
"typedoc-default-themes": "^0.9.0",
"uuid": "^7.0.2"
},
"devDependencies": {
"@types/jest": "^25.1.4",
"@types/mithril": "^2.0.2",
"@types/node": "^13.9.3",
"@types/selenium-webdriver": "^4.0.9",
2018-03-04 14:15:26 +01:00
"cleanslate": "^0.10.1",
"copy-webpack-plugin": "^5.1.1",
"geckodriver": "^1.19.1",
"jest": "^25.1.0",
"marked": "^0.8.2",
"nearley": "^2.19.1",
"prettier": "^1.19.1",
"selenium-webdriver": "^4.0.0-alpha.7",
2017-10-02 01:47:40 +01:00
"shared-git-hooks": "^1.2.1",
2018-09-11 22:24:21 +01:00
"source-map-loader": "^0.2.4",
"ts-jest": "^25.2.1",
"ts-loader": "^6.2.2",
"ts-node": "^8.8.1",
"tsconfig-paths-webpack-plugin": "^3.2.0",
"tslint": "^5.20.1",
"tslint-etc": "^1.10.1",
"tslint-sonarts": "^1.9.0",
"typedoc": "^0.16.11",
"typescript": "^3.7.5",
2018-09-11 22:24:21 +01:00
"uglify-es": "^3.3.9",
"uglifyjs-webpack-plugin": "^2.2.0",
"web-ext": "^4.1.0",
"web-ext-types": "^3.2.1",
"webpack": "^4.42.0",
"webpack-cli": "^3.3.11"
},
"scripts": {
"build": "sh scripts/build.sh",
"run": "web-ext run -s build/ -u 'txti.es'",
2019-09-16 18:39:53 -05:00
"forrest-run": "yarn run run",
"watch": "echo 'watch is broken, use build instead'; exit 0;",
"clean": "rm -rf build generated",
2019-05-31 16:48:53 +01:00
"test": "yarn run build && rm -rf web-ext-artifacts/* && web-ext build --source-dir ./build --overwrite-dest && mv web-ext-artifacts/*.zip web-ext-artifacts/tridactyl.xpi && jest --silent",
"update-buildsystem": "rm -rf src/node_modules; yarn run clean",
"lint": "bash hooks/pre-commit",
2019-05-29 17:48:32 +01:00
"pretty": "bash scripts/pretty.sh"
},
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"
}