-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
91 lines (91 loc) · 2.32 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
{
"name": "adviser-plugin-webhint",
"version": "1.0.1",
"description": "Plugin for adviser to run webhint audits on a given URL",
"main": "src/index.js",
"scripts": {
"audit": "audit-ci --high",
"linters": "eslint \"./src/**/*.js\"",
"release": "standard-version",
"size": "bundlesize",
"test": "jest --watch --verbose",
"test-ci": "jest --ci && npm run linters && npm run size && npm run audit"
},
"engines": {
"node": ">=12.16.1",
"npm": ">=6.13.6"
},
"license": "MIT",
"dependencies": {
"adviser": "^0.7.1",
"hint": "^6.0.3",
"is-number": "^7.0.0",
"is-url": "^1.2.4",
"requireindex": "^1.2.0"
},
"devDependencies": {
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"audit-ci": "1.3.1",
"babel-eslint": "^10.0.3",
"bundlesize": "^0.18.0",
"chalk": "^3.x",
"envinfo": "^7.4.0",
"eslint": "^6.6.0",
"eslint-config-jam3": "^2.0.1",
"eslint-config-prettier": "^6.5.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^23.0.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"husky": "^3.0.9",
"jest": "^24.9.0",
"lint-staged": "^9.4.2",
"prettier": "^1.18.2",
"standard-version": "^7.0.0"
},
"husky": {
"hooks": {
"pre-commit": "echo 'Pre-commit checks...' && lint-staged",
"pre-push": "echo 'Pre-push checks...' && npm run test-ci",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"bundlesize": [
{
"path": "src/index.js",
"maxSize": "3 kB"
}
],
"jest": {
"testEnvironment": "node",
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.js",
"!**/node_modules/**"
]
},
"lint-staged": {
"src/**/*.js": [
"eslint --fix",
"prettier --write",
"git add"
],
"__tests__/**/*.js": [
"eslint --fix",
"prettier --write",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/Jam3/adviser-plugin-webhint.git"
},
"bugs": {
"url": "https://github.com/Jam3/adviser-plugin-webhint/issues"
},
"homepage": "https://github.com/Jam3/adviser-plugin-webhint#readme"
}