forked from kewisch/quickmove-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.27 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
{
"name": "quickmove",
"description": "Quick Folder Move",
"version": "1.8.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": "rm dist/quickmove.xpi; (cd src && zip -9r ../dist/quickmove.xpi *)",
"clean": "rm dist/quickmove.xpi",
"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 origin/master && eslint src || true"
},
"dependencies": {},
"devDependencies": {
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"babel-eslint": "^10.1.0",
"bump-file": "^2.0.0",
"conventional-changelog-cli": "^2.0.25",
"eslint": "6.2.2",
"eslint-config-prettier": "6.1.0",
"eslint-plugin-fetch-options": "0.0.5",
"eslint-plugin-html": "6.0.0",
"eslint-plugin-mozilla": "2.1.0",
"eslint-plugin-no-unsanitized": "3.0.2",
"eslint-plugin-prettier": "3.1.0",
"prettier": "1.17.0"
}
}