UNPKG

1.76 kBJSONView Raw
1{
2 "name": "loglevelnext",
3 "version": "3.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",
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": ">= 6.14.4"
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": "^7.1.2",
33 "@commitlint/config-conventional": "^7.1.2",
34 "ava": "^1.3.1",
35 "chalk": "^2.3.0",
36 "eslint": "^5.15.1",
37 "eslint-config-shellscape": "^2.0.2",
38 "eslint-plugin-import": "^2.8.0",
39 "lint-staged": "^8.1.0",
40 "nyc": "^14.1.0",
41 "pre-commit": "^1.2.2",
42 "sinon": "^7.2.3",
43 "standard-version": "^5.0.1"
44 },
45 "types": "types/index.d.ts",
46 "keywords": [
47 "browser",
48 "console",
49 "debug",
50 "error",
51 "level",
52 "levels",
53 "log",
54 "logger",
55 "logging",
56 "loglevel",
57 "persist",
58 "persistent",
59 "plugins",
60 "prefix",
61 "trace",
62 "warn"
63 ],
64 "pre-commit": "lint-staged",
65 "lint-staged": {
66 "*.js": [
67 "eslint --fix",
68 "git add"
69 ]
70 }
71}