tridactyl/package.json

102 lines
2.8 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.0",
"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.4.5",
"immer": "^3.2.1",
2017-11-07 15:21:23 +00:00
"mark.js": "^8.11.1",
"mithril": "^2.0.4",
"rss-parser": "^3.7.2",
"semver-compare": "^1.0.0"
},
"devDependencies": {
"@types/jest": "^24.0.18",
"@types/mithril": "^2.0.0",
"@types/node": "^12.7.5",
2018-09-11 22:24:21 +01:00
"awesome-typescript-loader": "^5.2.1",
2018-03-04 14:15:26 +01:00
"cleanslate": "^0.10.1",
"copy-webpack-plugin": "^5.0.4",
"geckodriver": "^1.17.0",
"jest": "^24.9.0",
"marked": "^0.7.0",
"nearley": "^2.19.0",
"prettier": "^1.17.1",
"selenium-webdriver": "^4.0.0-alpha.5",
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": "^24.1.0",
"ts-node": "^8.4.1",
"tslint": "^5.20.0",
"tslint-etc": "^1.7.0",
"tslint-sonarts": "^1.9.0",
2019-08-02 11:44:08 +01:00
"typedoc": "^0.15.0",
"typedoc-default-themes": "git://github.com/tridactyl/typedoc-default-themes.git#fix_weird_member_names_bin",
"typescript": "^3.6.3",
2018-09-11 22:24:21 +01:00
"uglify-es": "^3.3.9",
"uglifyjs-webpack-plugin": "^2.2.0",
"web-ext": "^3.1.1",
"web-ext-types": "^3.2.1",
"webpack": "^4.40.2",
"webpack-cli": "^3.3.9"
},
"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-05 01:53:02 +01:00
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
2017-10-05 01:53:02 +01:00
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json"
],
"moduleNameMapper": {
"@src/(.*)": "<rootDir>/src/$1"
},
"globals": {
"ts-jest": {
"diagnostics": {
2019-05-31 16:24:41 +01:00
"ignoreCodes": [
151001
]
}
}
}
2017-10-05 01:53:02 +01:00
},
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"
}