2017-10-02 00:59:51 +01:00
|
|
|
{
|
|
|
|
"name": "tridactyl",
|
|
|
|
"version": "0.1.0",
|
|
|
|
"description": "Vimperator/Pentadactyl successor",
|
2017-11-16 18:12:18 +00:00
|
|
|
"dependencies": {
|
2018-04-21 23:43:12 +01:00
|
|
|
"@types/css": "0.0.31",
|
2018-04-20 22:06:06 +01:00
|
|
|
"@types/nearley": "^2.11.0",
|
2018-04-21 23:43:12 +01:00
|
|
|
"css": "^2.2.1",
|
2018-01-28 19:51:13 +00:00
|
|
|
"fuse.js": "^3.2.0",
|
2017-11-07 15:21:23 +00:00
|
|
|
"mark.js": "^8.11.1",
|
2018-04-20 22:06:06 +01:00
|
|
|
"nearley": "^2.11.0",
|
|
|
|
"semver-compare": "^1.0.0"
|
2017-11-16 18:12:18 +00:00
|
|
|
},
|
2017-10-02 00:59:51 +01:00
|
|
|
"devDependencies": {
|
2017-10-23 01:26:24 +01:00
|
|
|
"@types/jest": "^21.1.4",
|
|
|
|
"@types/node": "^8.0.46",
|
2017-10-02 00:59:51 +01:00
|
|
|
"awesome-typescript-loader": "^3.2.3",
|
2017-10-23 02:03:26 +01:00
|
|
|
"chokidar-cli": "^1.2.0",
|
2018-03-04 14:15:26 +01:00
|
|
|
"cleanslate": "^0.10.1",
|
2017-10-23 01:26:24 +01:00
|
|
|
"copy-webpack-plugin": "^4.2.0",
|
2017-10-05 01:53:02 +01:00
|
|
|
"jest": "^21.2.1",
|
2018-03-06 22:03:44 +01:00
|
|
|
"prettier": "^1.11.1",
|
2017-10-02 01:47:40 +01:00
|
|
|
"shared-git-hooks": "^1.2.1",
|
2017-10-02 00:59:51 +01:00
|
|
|
"source-map-loader": "^0.2.2",
|
2017-10-23 01:26:24 +01:00
|
|
|
"ts-jest": "^21.1.3",
|
2017-10-05 02:23:47 +01:00
|
|
|
"ts-node": "^3.3.0",
|
2017-10-23 23:44:07 +01:00
|
|
|
"typedoc": "^0.9.0",
|
2017-10-02 01:47:40 +01:00
|
|
|
"typescript": "^2.5.3",
|
2017-10-23 01:26:24 +01:00
|
|
|
"uglify-es": "^3.1.5",
|
|
|
|
"uglifyjs-webpack-plugin": "^1.0.0-rc.0",
|
2018-05-16 14:59:25 +01:00
|
|
|
"web-ext": "^1.10.1",
|
2017-11-19 01:55:20 +00:00
|
|
|
"web-ext-types": "github:kelseasy/web-ext-types",
|
2017-11-12 01:42:55 +00:00
|
|
|
"webpack": "^3.8.1"
|
2017-10-02 00:59:51 +01:00
|
|
|
},
|
|
|
|
"scripts": {
|
2018-05-14 14:19:20 +10:00
|
|
|
"build": "sh scripts/build.sh",
|
2018-05-16 15:04:35 +01:00
|
|
|
"run": "web-ext run --firefox=firefox -s build/ -u 'txti.es'",
|
2018-05-13 14:26:59 +01:00
|
|
|
"watch": "echo 'watch is broken, use build instead'; exit 0; chokidar src scripts --initial --silent -i 'src/excmds_{background,content}.ts' -i 'src/static/docs' -c 'npm run build'",
|
2017-11-09 05:54:10 +00:00
|
|
|
"clean": "rm -rf build generated",
|
2017-10-05 03:55:42 +01:00
|
|
|
"test": "npm run build && jest --silent",
|
2018-05-18 15:35:32 +01:00
|
|
|
"update-buildsystem": "rm -rf src/node_modules; npm run clean",
|
|
|
|
"lint": "bash hooks/pre-commit",
|
|
|
|
"pretty": "bash scripts/pretty"
|
2017-10-02 00:59:51 +01:00
|
|
|
},
|
2017-10-05 01:53:02 +01:00
|
|
|
"jest": {
|
|
|
|
"transform": {
|
|
|
|
"^.+\\.tsx?$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
|
|
|
|
},
|
|
|
|
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
|
|
|
|
"moduleFileExtensions": [
|
|
|
|
"ts",
|
|
|
|
"tsx",
|
|
|
|
"js",
|
|
|
|
"jsx",
|
|
|
|
"json"
|
|
|
|
]
|
|
|
|
},
|
2017-10-06 00:06:50 +01:00
|
|
|
"author": "Colin Caine",
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "git+ssh://git@github.com/cmcaine/tridactyl.git"
|
|
|
|
},
|
|
|
|
"keywords": [
|
|
|
|
"webextension",
|
|
|
|
"webext",
|
|
|
|
"vim",
|
|
|
|
"firefox"
|
|
|
|
],
|
|
|
|
"license": "Apache-2.0",
|
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/cmcaine/tridactyl/issues"
|
|
|
|
},
|
|
|
|
"homepage": "https://github.com/cmcaine/tridactyl#readme"
|
2017-10-02 00:59:51 +01:00
|
|
|
}
|