tridactyl/package.json
glacambre d36eedf05b
Add tslint and sonarts to Travis
Tslint and sonarts are pretty cool linters/static analyzers. Currently,
we ask them to ignore any of the rules that Tridactyl might not respect.
This enables progressively re-enabling rules and submitting small,
reviewable PRs that fix things.
2019-03-31 16:08:31 +02:00

84 lines
2.3 KiB
JSON

{
"name": "tridactyl",
"version": "0.1.0",
"description": "Vimperator/Pentadactyl successor",
"dependencies": {
"@types/css": "0.0.31",
"@types/nearley": "^2.11.0",
"command-line-args": "^5.0.2",
"csp-serdes": "github:cmcaine/csp-serdes",
"css": "^2.2.4",
"fuse.js": "^3.4.2",
"mark.js": "^8.11.1",
"rss-parser": "^3.6.3",
"semver-compare": "^1.0.0"
},
"devDependencies": {
"@types/jest": "^24.0.9",
"@types/node": "^11.10.4",
"awesome-typescript-loader": "^5.2.1",
"cleanslate": "^0.10.1",
"copy-webpack-plugin": "^5.0.0",
"jest": "^24.1.0",
"marked": "^0.6.1",
"nearley": "^2.16.0",
"prettier": "^1.16.4",
"shared-git-hooks": "^1.2.1",
"source-map-loader": "^0.2.4",
"ts-jest": "^24.0.0",
"ts-node": "^8.0.2",
"tslint": "^5.14.0",
"tslint-sonarts": "^1.9.0",
"typedoc": "^0.14.2",
"typedoc-default-themes": "git://github.com/tridactyl/typedoc-default-themes.git#fix_weird_member_names_bin",
"typescript": "^3.3.3333",
"uglify-es": "^3.3.9",
"uglifyjs-webpack-plugin": "^2.1.2",
"web-ext": "^3.0.0",
"web-ext-types": "^3.1.0",
"webpack": "^4.29.6",
"webpack-cli": "^3.2.3"
},
"scripts": {
"build": "sh scripts/build.sh",
"run": "web-ext run -s build/ -u 'txti.es'",
"watch": "echo 'watch is broken, use build instead'; exit 0;",
"clean": "rm -rf build generated",
"test": "npm run build && jest --silent",
"update-buildsystem": "rm -rf src/node_modules; npm run clean",
"lint": "bash hooks/pre-commit",
"pretty": "bash scripts/pretty"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json"
],
"moduleNameMapper": {
"@src/(.*)": "<rootDir>/src/$1"
}
},
"author": "Colin Caine",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/tridactyl/tridactyl.git"
},
"keywords": [
"webextension",
"webext",
"vim",
"firefox"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/tridactyl/tridactyl/issues"
},
"homepage": "https://github.com/tridactyl/tridactyl#readme"
}