-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
69 lines (69 loc) · 2.13 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
{
"name": "firefox-scripts",
"description": "Custom tweaks and preferences for Firefox",
"version": "0.1.0",
"repository": {
"type": "git",
"url": "git+https://github.com/dotiful/firefox-scripts.git"
},
"keywords": [],
"author": {
"name": "Art Dev",
"email": "artdevjs@gmail.com",
"url": "https://github.com/dotiful"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/dotiful/firefox-scripts/issues"
},
"homepage": "https://github.com/dotiful/firefox-scripts#readme",
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/preset-env": "^7.14.7",
"@babel/register": "^7.14.5",
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"chalk": "^4.1.1",
"cz-conventional-changelog": "^3.3.0",
"del": "^6.0.0",
"eslint": "^7.30.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-json": "^3.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-standard": "^5.0.0",
"firefox-profile": "^4.2.0",
"gulp": "^4.0.2",
"gulp-changed": "^4.0.3",
"gulp-debug": "^4.0.0",
"gulp-notify": "^4.0.0",
"gulp-plumber": "^1.2.1",
"gulp-prettyerror": "^2.0.0",
"gulp-size": "^4.0.1",
"husky": "^7.0.1",
"lint-staged": "^11.0.0",
"markdownlint-cli": "^0.27.1",
"node-notifier": ">=10.0.0",
"nodemon": "^2.0.12",
"npm-run-all": "^4.1.5",
"prettier": "^2.3.2",
"prettier-plugin-packagejson": "^2.2.11",
"stylelint": "^13.13.1",
"stylelint-config-stylishthemes": "^1.0.1",
"through2": "^4.0.2",
"yarn": "^1.22.10"
},
"scripts": {
"format": "prettier --write '**/*.js'",
"lint": "npm-run-all --silent lint:*",
"lint:markdown": "markdownlint --config .markdownlint.json README.md",
"commit": "commitlint -E HUSKY_GIT_PARAMS",
"cm": "npx git-cz",
"release": "npx standard-version",
"eslint-find-option-rules": "eslint-find-rules [option] <file> [flag]"
}
}