-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.57 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.57 KB
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
{
"name": "refined-bitbucket-server",
"version": "1.3.0",
"description": "Browser extension that simplifies and adds useful features to bitbucket server UI",
"main": "index.js",
"scripts": {
"test": "run-s type-check lint",
"type-check": "tsc",
"format": "prettier --write src/**/*.{js,jsx,ts,tsx}",
"lint": "eslint . --ext ts --ext tsx --ext js --ext jsx",
"lint-fix": "yarn lint --fix",
"commit": "git-cz",
"build": "webpack --mode=production",
"watch": "webpack --mode=development --watch",
"dry-release-version": "standard-version --dry-run",
"release-version": "standard-version",
"release": "run-s build release:*",
"release:amo": "cd dist && web-ext-submit",
"release:cws": "cd dist && webstore upload --auto-publish"
},
"repository": {
"type": "git",
"url": "https://github.com/joancaron/refined-bitbucket-server.git"
},
"author": {
"name": "Joan Caron",
"email": "[email protected]",
"url": "https://github.com/joancaron"
},
"license": "MIT",
"devDependencies": {
"@types/dom-loaded": "^1.0.0",
"@types/element-ready": "^2.1.0",
"@types/firefox-webext-browser": "^65.0.2",
"@typescript-eslint/eslint-plugin": "^1.4.2",
"@typescript-eslint/parser": "^1.4.2",
"chrome-webstore-upload-cli": "^1.2.0",
"commitizen": "^3.0.7",
"copy-webpack-plugin": "^5.0.0",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^5.14.1",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.4",
"husky": "^1.3.1",
"jsdom": "^13.2.0",
"lint-staged": "^8.1.4",
"npm-run-all": "^4.1.5",
"prettier": "^1.16.4",
"size-plugin": "^1.1.2",
"standard-version": "^8.0.1",
"terser-webpack-plugin": "^1.2.3",
"ts-loader": "^5.3.3",
"ts-node": "^8.0.2",
"typescript": "^3.3.3333",
"web-ext-submit": "^3.0.0",
"webpack": "^4.29.6",
"webpack-chrome-extension-reloader": "^1.2.0",
"webpack-cli": "^3.2.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"delegate-it": "^1.1.0",
"dom-chef": "^3.5.2",
"dom-loaded": "^1.0.1",
"element-ready": "^3.0.0",
"interactjs": "^1.4.0-rc.13",
"mem": "^5.0.0",
"select-dom": "^4.2.1",
"storm-textarea": "^2.0.1",
"type-fest": "^0.5.2",
"vscode-icons-js": "^9.1.1",
"webext-domain-permission-toggle": "^0.1.0",
"webext-dynamic-content-scripts": "^5.0.2",
"webext-options-sync": "^0.15.3",
"webextension-polyfill": "^0.4.0"
}
}