-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.86 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
{
"name": "close-tabs-to-left",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"repository": "github:ParkerM/close-tabs-to-left",
"bugs": "https://github.com/ParkerM/close-tabs-to-left/issues",
"scripts": {
"start": "web-ext run",
"start:dev-es": "web-ext run --firefox=firefoxdeveloperedition --pref intl.locale.requested=es-MX -p \"esmx\" --keep-profile-changes",
"lint:web-ext": "yarn run build-release && web-ext lint",
"lint:eslint": "eslint src/**/*.{js,ts}",
"test": "jest",
"test:coverage": "jest --coverage",
"build": "webpack --mode=development",
"build-release": "webpack --mode=production",
"stage": "npx standard-version --skip.tag",
"stage:patch": "yarn run stage --release-as patch",
"stage:minor": "yarn run stage --release-as minor",
"stage:major": "yarn run stage --release-as major",
"pack": "web-ext build",
"release": "yarn run build-release && yarn run pack",
"prepare": "husky install"
},
"engines": {
"node": "^14.x",
"yarn": "^1.x"
},
"private": true,
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@types/jest": "^26.0.23",
"@typescript-eslint/eslint-plugin": "^4.24.0",
"@typescript-eslint/parser": "^4.24.0",
"eslint": "^7.26.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-no-unsanitized": "^3.1.5",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^6.0.0",
"jest": "^26.6.3",
"mockzilla": "^0.9.0",
"mockzilla-webextension": "^0.9.0",
"prettier": "^2.3.0",
"source-map-loader": "^3.0.0",
"source-map-support": "^0.5.19",
"ts-jest": "^26.5.6",
"ts-loader": "^9.2.1",
"typescript": "^4.2.4",
"web-ext": "^6.1.0",
"webextension-polyfill-ts": "^0.25.0",
"webpack": "^5.37.1",
"webpack-cli": "^4.7.0"
},
"dependencies": {}
}