-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
182 lines (182 loc) Β· 4.74 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
{
"name": "custom-default-reviewers",
"description": "Firefox add-on / Chrome extension that overwrites the repository default reviewers by a custom selection of reviewers on Bitbucket Cloud.",
"version": "1.0.5",
"main": "index.js",
"scripts": {
"precommit": "lint-staged",
"prettier": "prettier --write \"./**/*.{js,jsx,json,css,md,html}\"",
"xo": "xo *.js {src,test,scripts}/**/*.js !src/vendor/*.*",
"ava": "cross-env BABEL_ENV=testing ava",
"ava:w": "npm run ava -- --watch",
"flow": "flow check --color=always",
"flow:w": "flow check --color=always & chokidar \"src/**/*.js\" -c \"flow check\"",
"build": "webpack",
"test": "npm-run-all xo ava flow build",
"watch": "webpack --watch",
"sync-version": "node scripts/sync-version",
"package": "node scripts/package",
"deploy": "npm-run-all sync-version package && node scripts/deploy",
"major": "npm version --no-git-tag-version major && npm run sync-version",
"minor": "npm version --no-git-tag-version minor && npm run sync-version",
"patch": "npm version --no-git-tag-version patch && npm run sync-version"
},
"lint-staged": {
"**/*.{js,jsx,json,css,md}": [
"prettier --write",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/jwalletcustom-default-reviewers.git"
},
"keywords": [
"bitbucket"
],
"author": {
"name": "jwallet",
"email": "[email protected]",
"url": "https://wwww.github.com/jwallet"
},
"license": "MIT",
"homepage": "https://github.com/jwallet/custom-default-reviewers#readme",
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-transform-modules-commonjs": "^7.0.0",
"@babel/plugin-transform-react-jsx": "^7.0.0",
"@babel/preset-flow": "^7.0.0",
"@babel/register": "^7.0.0",
"archiver": "^3.0.0",
"ava": "^1.4.1",
"babel-eslint": "^9.0.0",
"babel-loader": "^8.0.0",
"chokidar-cli": "^1.2.1",
"chrome-extension-deploy": "^3.0.0",
"copy-webpack-plugin": "^4.3.1",
"cross-env": "^5.1.0",
"css-loader": "^1.0.0",
"del": "^3.0.0",
"dotenv": "^6.0.0",
"eslint-config-xo-flow": "^0.1.0",
"eslint-plugin-flowtype": "^2.50.0",
"firefox-extension-deploy": "^1.1.1",
"flow-bin": "^0.80.0",
"flush-promises": "^1.0.0",
"husky": "^4.2.5",
"jsdom": "^12.0.0",
"lint-staged": "^7.2.2",
"mutationobserver-shim": "^0.3.2",
"npm-run-all": "^4.1.2",
"path": "^0.12.7",
"prettier": "^1.11.1",
"request": "^2.83.0",
"require-hacker": "^3.0.1",
"semver": "^5.4.1",
"style-loader": "^0.23.0",
"uglifyjs-webpack-plugin": "^1.0.0",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12",
"xo": "^0.33.1",
"yoctodelay": "^1.1.0"
},
"dependencies": {
"@testing-library/dom": "^6.11.0",
"dom-chef": "^3.1.0",
"element-ready": "^3.0.0",
"ignore": "^4.0.6",
"jquery": "^3.5.0",
"jquery-highlight": "^3.4.0",
"lodash.deburr": "^4.1.0",
"marked": "^0.7.0",
"mousetrap": "^1.6.1",
"onetime": "^2.0.1",
"selector-observer": "^1.2.0",
"time-ago": "^0.2.1",
"webext-options-sync": "^0.15.0"
},
"xo": {
"extends": "xo-flow",
"prettier": true,
"semicolon": false,
"esnext": true,
"space": 4,
"envs": [
"browser",
"jquery"
],
"settings": {
"flowtype": {
"onlyFilesWithFlowAnnotation": true
}
},
"rules": {
"comma-dangle": 0,
"import/no-unassigned-import": 0,
"no-unused-vars": [
2,
{
"varsIgnorePattern": "^h$"
}
],
"babel/object-curly-spacing": 0,
"space-before-function-paren": 0,
"quotes": [
2,
"single",
{
"avoidEscape": true
}
],
"flowtype/require-return-type": 0,
"flowtype/require-parameter-type": 0,
"flowtype/newline-after-flow-annotation": 0,
"flowtype/array-style-complex-type": [
"error",
"verbose"
]
}
},
"ava": {
"files": [
"src/**/*.spec.js"
],
"sources": [
"src/**/*.js"
],
"require": [
"@babel/register",
"./scripts/ignore-utils"
],
"timeout": "10s"
},
"babel": {
"presets": [
"@ava/stage-4",
"@babel/preset-flow"
],
"plugins": [
[
"@babel/plugin-transform-react-jsx",
{
"pragma": "h",
"useBuiltIns": true
}
],
[
"@babel/plugin-proposal-object-rest-spread",
{
"useBuiltIns": true
}
]
],
"env": {
"testing": {
"plugins": [
"@babel/plugin-transform-modules-commonjs"
]
}
}
}
}