-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.29 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
{
"name": "jlv-pino",
"version": "1.0.2",
"description": "jlv transformer for jlv",
"main": "src/index",
"files": [
"README.md",
"/src/index.js",
".json-log-viewer"
],
"scripts": {
"test": "mocha './test/**/**.test.js'",
"coverage": "npm run coverage:text",
"coverage:text": "nyc --reporter text npm test",
"lint": "npm run lint:check",
"lint:check": "eslint ./src/**.js ./test/**.test.js -c .eslintrc",
"lint:fix": "npm run lint:check -- --fix",
"coveralls": "nyc npm test && nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Defkil/jlv-pino.git"
},
"keywords": [
"jlv",
"json-log-viewer",
"pino",
"logger",
"json"
],
"author": "Oliver Grüttner",
"license": "MIT",
"bugs": {
"url": "https://github.com/Defkil/jlv-pino/issues"
},
"homepage": "https://github.com/Defkil/jlv-pino#readme",
"dependencies": {
"event-stream": "^4.0.1"
},
"devDependencies": {
"eslint": "^7.2.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-jsx-a11y": "^6.3.0",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^4.0.0",
"chai": "^4.2.0",
"mocha": "^8.1.1",
"nyc": "^15.1.0"
}
}