-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
38 lines (38 loc) · 1.22 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
{
"name": "quickmove",
"description": "Quick Folder Move",
"version": "2.9.2",
"private": true,
"author": "Philipp Kewisch <[email protected]>",
"license": "MPL-2.0",
"homepage": "https://github.com/kewisch/quickmove#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/kewisch/quickmove.git"
},
"bugs": {
"url": "https://github.com/kewisch/quickmove/issues"
},
"scripts": {
"build": "web-ext build -s src -o",
"clean": "rm -f web-ext-artifacts",
"bump": "bumper() { bump package.json \"$1\"; bump src/manifest.json \"$1\"; }; bumper",
"tag": "git tag v$(jq -r '.version' src/manifest.json)",
"lint": "commitlint -f e4eb27c75f2a897ca4d24f16e9fe01fe0379ceed && eslint src && stylelint src "
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"bump-file": "^2.0.0",
"conventional-changelog-cli": "^5.0.0",
"eslint": "^8.44.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-fetch-options": "^0.0.5",
"eslint-plugin-html": "^8.1.1",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.3.3",
"stylelint": "^16.7.0",
"stylelint-prettier": "^5.0.1",
"web-ext": "^8.2.0"
}
}