This repository has been archived by the owner on Sep 13, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.67 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
{
"name": "@ashcorr/loglevel-colored-level-prefix",
"version": "1.0.0",
"description": "loglevel plugin that adds colored level prefix (node only)",
"main": "dist/index.js",
"scripts": {
"validate": "yarn lint:check && yarn build && yarn test",
"build": "rimraf dist && babel --copy-files --out-dir dist --ignore *.test.js src",
"lint": "eslint --max-warnings=0 --fix .",
"lint:check": "eslint --max-warnings=0 .",
"test": "jest",
"test:watch": "jest --watch",
"semantic-release": "semantic-release",
"contributor:add": "all-contributors add",
"contributor:generate": "all-contributors generate"
},
"files": [
"dist"
],
"keywords": [
"loglevel-plugin"
],
"author": "Kent C. Dodds <[email protected]> (http://kentcdodds.com/)",
"contributors": [
"Ashleigh Carr <[email protected]> (https://github.com/AshCorr)"
],
"license": "MIT",
"dependencies": {
"chalk": "^4.1.2",
"loglevel": "^1.8.1"
},
"devDependencies": {
"@babel/cli": "^7.8.3",
"@babel/core": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"@babel/register": "^7.8.3",
"all-contributors-cli": "^6.26.0",
"eslint": "^8.43.0",
"eslint-config-kentcdodds": "^20.5.0",
"jest": "^29.5.0",
"rimraf": "^5.0.1",
"semantic-release": "^21.0.6"
},
"eslintConfig": {
"extends": [
"kentcdodds",
"kentcdodds/jest"
]
},
"repository": {
"type": "git",
"url": "https://github.com/ashcorr/loglevel-colored-level-prefix.git"
},
"bugs": {
"url": "https://github.com/ashcorr/loglevel-colored-level-prefix/issues"
},
"homepage": "https://github.com/ashcorr/loglevel-colored-level-prefix#readme"
}