summaryrefslogtreecommitdiff
path: root/desktop/node_modules/roarr/package.json
blob: 0bfd49e55ead752f47fd2c11afd25b1b2f401bef (plain)
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
{
  "author": {
    "email": "gajus@gajus.com",
    "name": "Gajus Kuizinas",
    "url": "http://gajus.com"
  },
  "ava": {
    "babel": {
      "compileAsTests": [
        "test/helpers/**/*"
      ]
    },
    "files": [
      "test/roarr/**/*"
    ],
    "require": [
      "@babel/register"
    ]
  },
  "dependencies": {
    "boolean": "^3.0.1",
    "detect-node": "^2.0.4",
    "globalthis": "^1.0.1",
    "json-stringify-safe": "^5.0.1",
    "semver-compare": "^1.0.0",
    "sprintf-js": "^1.1.2"
  },
  "description": "JSON logger for Node.js and browser.",
  "devDependencies": {
    "@ava/babel": "^1.0.1",
    "@babel/cli": "^7.11.6",
    "@babel/core": "^7.11.6",
    "@babel/node": "^7.10.5",
    "@babel/plugin-transform-flow-strip-types": "^7.10.4",
    "@babel/preset-env": "^7.11.5",
    "@babel/register": "^7.11.5",
    "ava": "^3.12.1",
    "babel-plugin-istanbul": "^6.0.0",
    "babel-plugin-transform-export-default-name": "^2.0.4",
    "coveralls": "^3.1.0",
    "domain-parent": "^1.0.0",
    "eslint": "^7.9.0",
    "eslint-config-canonical": "^24.1.1",
    "flow-bin": "^0.133.0",
    "flow-copy-source": "^2.0.9",
    "gitdown": "^3.1.3",
    "husky": "^4.3.0",
    "nyc": "^15.1.0",
    "semantic-release": "^17.1.1"
  },
  "engines": {
    "node": ">=8.0"
  },
  "husky": {
    "hooks": {
      "pre-commit": "npm run lint && npm run test && npm run build",
      "pre-push": "gitdown ./.README/README.md --output-file ./README.md --check"
    }
  },
  "keywords": [
    "log",
    "logger",
    "json"
  ],
  "main": "./dist/log.js",
  "name": "roarr",
  "nyc": {
    "include": [
      "src/**/*.js"
    ],
    "instrument": false,
    "reporter": [
      "text-lcov"
    ],
    "require": [
      "@babel/register"
    ],
    "sourceMap": false
  },
  "license": "BSD-3-Clause",
  "repository": {
    "type": "git",
    "url": "git@github.com:gajus/roarr.git"
  },
  "scripts": {
    "build": "rm -fr ./dist && NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps && flow-copy-source src dist",
    "create-readme": "gitdown ./.README/README.md --output-file ./README.md",
    "dev": "NODE_ENV=production babel ./src --out-dir ./dist --copy-files --source-maps --watch",
    "lint": "eslint ./src ./test && flow",
    "test": "NODE_ENV=test ava --serial --verbose"
  },
  "version": "2.15.4"
}