UNPKG

1.66 kBJSONView Raw
1{
2 "name": "loglevelnext",
3 "version": "4.0.1",
4 "description": "A modern logging library for Node.js and modern browsers that provides log level mapping to the console",
5 "license": "MPL-2.0",
6 "repository": "shellscape/loglevelnext",
7 "author": "Andrew Powell <andrew@shellscape.org>",
8 "homepage": "https://github.com/shellscape/loglevelnext",
9 "main": "lib/index.js",
10 "engines": {
11 "node": ">= 8.16.0"
12 },
13 "scripts": {
14 "ci:coverage": "nyc npm run test && nyc report --reporter=text-lcov > coverage.lcov",
15 "ci:lint": "npm run lint && npm run security",
16 "ci:lint:commits": "commitlint --from=${CIRCLE_BRANCH} --to=${CIRCLE_SHA1}",
17 "ci:test": "npm run test",
18 "commitlint": "commitlint",
19 "commitmsg": "commitlint -e $GIT_PARAMS",
20 "lint": "eslint --fix --cache lib test",
21 "lint-staged": "lint-staged",
22 "security": "npm audit",
23 "test": "ava"
24 },
25 "files": [
26 "lib/",
27 "types/",
28 "README.md"
29 ],
30 "dependencies": {},
31 "devDependencies": {
32 "@commitlint/cli": "^8.2.0",
33 "@commitlint/config-conventional": "^8.2.0",
34 "ava": "^2.4.0",
35 "chalk": "^4.0.0",
36 "eslint-config-shellscape": "^2.1.0",
37 "lint-staged": "^10.1.3",
38 "nyc": "^15.0.1",
39 "pre-commit": "^1.2.2",
40 "sinon": "^7.2.3"
41 },
42 "types": "types/index.d.ts",
43 "keywords": [
44 "browser",
45 "console",
46 "debug",
47 "error",
48 "level",
49 "levels",
50 "log",
51 "logger",
52 "logging",
53 "loglevel",
54 "persist",
55 "persistent",
56 "plugins",
57 "prefix",
58 "trace",
59 "warn"
60 ],
61 "pre-commit": "lint-staged",
62 "lint-staged": {
63 "*.js": [
64 "eslint --fix"
65 ]
66 }
67}