-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
97 lines (97 loc) · 2.38 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
{
"name": "adviser",
"version": "0.7.9",
"description": "Jam3 Quality advisor",
"main": "src/index.js",
"contributors": [
"Iran Reyes <[email protected]>",
"Nick Poisson <[email protected]>"
],
"scripts": {
"test": "jest --watch",
"test-ci": "jest --ci && npm run linters && npm run audit",
"linters": "eslint \"./src/**/*.js\"",
"audit": "audit-ci --high",
"release": "standard-version"
},
"bin": {
"adviser": "./src/cli/bin/adviser.js"
},
"engines": {
"node": ">=10.15.0",
"npm": ">=6.5.0"
},
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "13.2.0",
"@commitlint/config-conventional": "7.5.0",
"audit-ci": "6.3.0",
"babel-eslint": "10.0.1",
"envinfo": "7.0.0",
"eslint": "5.16.0",
"eslint-config-jam3": "2.0.0",
"eslint-config-prettier": "4.3.0",
"eslint-config-standard": "12.0.0",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-jest": "22.2.2",
"eslint-plugin-node": "8.0.1",
"eslint-plugin-prettier": "3.0.1",
"eslint-plugin-promise": "4.0.1",
"eslint-plugin-standard": "4.0.0",
"husky": "2.1.0",
"jest": "27.2.5",
"lint-staged": "11.2.0",
"prettier": "1.16.4",
"standard-version": "9.3.1"
},
"jest": {
"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"
]
},
"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"
}
},
"dependencies": {
"ajv": "6.12.6",
"async": "3.2.4",
"chalk": "2.4.2",
"cosmiconfig": "5.2.1",
"debug": "4.1.1",
"hyperlinker": "1.0.0",
"log-symbols": "3.0.0",
"optionator": "0.8.2",
"ora": "3.4.0",
"pluralize": "8.0.0",
"requireindex": "1.2.0",
"strip-ansi": "5.2.0",
"supports-hyperlinks": "2.0.0",
"text-table": "0.2.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Jam3/adviser.git"
},
"bugs": {
"url": "https://github.com/Jam3/adviser/issues"
},
"homepage": "https://github.com/Jam3/adviser#readme"
}