forked from tridactyl/tridactyl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.38 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
{
"name": "tridactyl",
"version": "0.1.0",
"description": "Vimperator/Pentadactyl successor",
"dependencies": {
"@types/css": "0.0.31",
"@types/nearley": "^2.11.1",
"command-line-args": "^5.1.1",
"csp-serdes": "github:cmcaine/csp-serdes",
"css": "^2.2.4",
"flyd": "^0.2.8",
"fuse.js": "^3.4.6",
"immer": "^5.3.6",
"mark.js": "^8.11.1",
"mithril": "^2.0.4",
"rss-parser": "^3.7.5",
"ramda": "^0.27.0",
"semver-compare": "^1.0.0",
"typedoc-default-themes": "^0.7.2",
"uuid": "^3.4.0"
},
"devDependencies": {
"@types/jest": "^25.1.2",
"@types/mithril": "^2.0.2",
"@types/node": "^13.7.1",
"@types/selenium-webdriver": "^4.0.8",
"cleanslate": "^0.10.1",
"copy-webpack-plugin": "^5.1.1",
"geckodriver": "^1.19.1",
"jest": "^25.1.0",
"marked": "^0.8.0",
"nearley": "^2.19.1",
"prettier": "^1.19.1",
"selenium-webdriver": "^4.0.0-alpha.5",
"shared-git-hooks": "^1.2.1",
"source-map-loader": "^0.2.4",
"ts-jest": "^25.2.0",
"ts-loader": "^6.2.1",
"ts-node": "^8.6.2",
"tsconfig-paths-webpack-plugin": "^3.2.0",
"tslint": "^5.20.1",
"tslint-etc": "^1.10.0",
"tslint-sonarts": "^1.9.0",
"typedoc": "^0.16.10",
"typescript": "^3.7.5",
"uglify-es": "^3.3.9",
"uglifyjs-webpack-plugin": "^2.2.0",
"web-ext": "^4.1.0",
"web-ext-types": "^3.2.1",
"webpack": "^4.41.6",
"webpack-cli": "^3.3.11"
},
"scripts": {
"build": "sh scripts/build.sh",
"run": "web-ext run -s build/ -u 'txti.es'",
"forrest-run": "yarn run run",
"watch": "echo 'watch is broken, use build instead'; exit 0;",
"clean": "rm -rf build generated",
"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",
"pretty": "bash scripts/pretty.sh"
},
"author": "Colin Caine",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/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"
}