-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.47 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
{
"name": "tri-meiosis",
"version": "0.0.1",
"description": "Green-fields exploration of a Tridactyl 2 using the meiosis pattern for everything",
"main": "build/content.js",
"author": "Saul Reynolds-Haertle",
"license": "Apache-2.0",
"dependencies": {
"chokidar-cli": "^1.2.2",
"flyd": "^0.2.8",
"immer": "^3.1.2",
"mithril": "^1",
"web-ext": "^3.1.1",
"web-ext-types": "https://github.com/kelseasy/web-ext-types"
},
"devDependencies": {
"@types/mithril": "^1.1.16",
"awesome-typescript-loader": "^5.2.1",
"copy-webpack-plugin": "^5.0.3",
"html-loader": "^0.5.5",
"husky": "^2.3.0",
"prettier": "^1.17.1",
"source-map-loader": "^0.2.4",
"typescript": "^3.4.5",
"webpack": "^4.32.2",
"webpack-cli": "^3.3.2",
"webpack-webextension-plugin": "^0.2.0"
},
"scripts": {
"build": "webpack",
"watch": "webpack --watch",
"check": "tsc --noEmit",
"run": "web-ext run -s dist -u txti.es -u about:debugging",
"fix": "prettier --write *.json *.js src/**"
},
"browserslist": [
"Firefox >= 66"
],
"husky": {
"hooks": {
"pre-commit": "yarn run fix",
"pre-push": "yarn run fix"
}
},
"prettier": {
"tabWidth": 4,
"semi": false,
"endOfLine": "lf",
"useTabs": false,
"trailingComma": "es5"
}
}