forked from tridactyl/tridactyl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 2.87 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"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.4.1",
"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.17.10",
"fuse.js": "^6.6.2",
"nearley": "^2.20.1",
"ramda": "^0.28.0",
"semver-compare": "^1.0.0",
"stream-browserify": "^3.0.0",
"tridactyl-arg": "git+https://github.com/GHolk/arg.git#v5.1.0",
"tsdef": "^0.0.14",
"typedoc": "^0.19.2",
"typedoc-default-themes": "^0.12.10",
"xss": "^1.0.14"
},
"devDependencies": {
"@types/css": "0.0.33",
"@types/firefox-webext-browser": "^109.0.0",
"@types/jest": "^27.5.0",
"@types/nearley": "^2.11.2",
"@types/selenium-webdriver": "^4.1.10",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/eslint-plugin-tslint": "^5.53.0",
"@typescript-eslint/parser": "^4.33.0",
"command-line-args": "^5.2.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsdoc": "^40.0.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-sonarjs": "^0.18.0",
"geckodriver": "^3.2.0",
"jasmine-fail-fast": "^2.0.1",
"jest": "^25.5.4",
"jest-webextension-mock": "^3.8.8",
"marked": "^4.2.12",
"prettier": "^2.8.4",
"selenium-webdriver": "^4.7.1",
"ts-jest": "^25.5.1",
"tslint": "^5.20.1",
"tslint-etc": "^1.13.10",
"tslint-sonarts": "^1.9.0",
"typescript": "^3.9.10",
"web-ext": "^7.5.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 'txti.es'",
"test": "yarn run build && web-ext build --source-dir ./build --overwrite-dest && jest --silent",
"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/"
},
"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"
}