-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
101 lines (101 loc) · 2.68 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
98
99
100
101
{
"name": "nclr",
"version": "2.1.0",
"description": "Set of pre-defined coloured console logs",
"main": "index.js",
"scripts": {
"test": "snyk test && jest",
"doc:lint": "documentation lint index.js",
"doc:md": "documentation build index.js -f md -o DOCUMENTATION.md",
"doc": "npm run doc:lint && documentation readme index.js -s Documentation",
"commit": "git-cz",
"lint:js": "eslint -c .eslintrc.js *.js src/*.js test/*.js --fix",
"lint:md": "remark . .github",
"lint": "npm run lint:js && npm run lint:md",
"semantic-release": "semantic-release",
"prepare": "snyk-protect && husky install",
"contribs:add": "all-contributors add",
"contribs:generate": "all-contributors generate",
"contribs:check": "all-contributors check",
"fmt": "prettier --write *.js {src,test}/*.js",
"precommit": "lint-staged"
},
"repository": {
"type": "git",
"url": "https://github.com/Berkmann18/nclr.git"
},
"keywords": [
"CLI",
"colour",
"colors",
"console",
"log"
],
"author": {
"name": "Maximilian Berkmann",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/Berkmann18/nclr/issues"
},
"homepage": "https://github.com/Berkmann18/nclr#readme",
"dependencies": {
"colors": "^1.3.3",
"figures": "^5.0.0"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^10.0.3",
"@snyk/protect": "^1.1168.0",
"all-contributors-cli": "^6.25.1",
"conventional-changelog-eslint": "^4.0.0",
"cz-adapter-eslint": "^0.3.0",
"documentation": "^14.0.2",
"eslint": "^8.43.0",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-security": "^1.7.1",
"eslint-plugin-you-dont-need-lodash-underscore": "^6.12.0",
"husky": "^8.0.3",
"jest": "^29.6.1",
"lint-staged": "^13.2.2",
"prettier": "^3.0.0",
"remark-cli": "^11.0.0",
"remark-preset-lint-consistent": "^5.1.2",
"remark-preset-lint-recommended": "^6.1.3",
"semantic-release": "^21.0.2",
"snyk": "^1.1193.0",
"test-console": "^2.0.0"
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"!index.js",
"src/*.js",
"test/*.js",
"!**/node_modules/**",
"!**/_*.js"
],
"testEnvironment": "node"
},
"engines": {
"node": ">= 16.0.0",
"npm": ">= 7.0.0"
},
"config": {
"commitizen": {
"path": "cz-adapter-eslint"
}
},
"lint-staged": {
"*.js": [
"prettier --write",
"eslint -c .eslintrc.js --fix",
"jest --bail --findRelatedTests"
],
"*.md": [
"remark"
]
}
}