-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
78 lines (78 loc) · 1.97 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"main": "index.js",
"name": "@naturacosmeticos/clio-nodejs-logger",
"author": "Natura Cosméticos <[email protected]>",
"version": "3.0.0",
"devDependencies": {
"@naturacosmeticos/eslint-config-natura": "1.1.1",
"esdoc": "1.1.0",
"esdoc-ecmascript-proposal-plugin": "1.0.0",
"esdoc-node": "1.0.5",
"esdoc-standard-plugin": "1.0.0",
"eslint": "5.16.0",
"eslint-plugin-import": "2.17.2",
"faker": "4.1.0",
"husky": "1.3.1",
"mocha": "5.2.0",
"nyc": "11.9.0",
"sinon": "7.3.2"
},
"files": [
"/src",
"index.js"
],
"scripts": {
"docs": "./node_modules/.bin/esdoc -c .esdoc.json",
"lint": "eslint src/ test/",
"lint:fix": "eslint --fix src/ test/",
"test": "mocha --recursive",
"test:watch": "mocha --recursive --watch",
"test:coverage": "nyc --reporter=text mocha --recursive",
"package": "bash package.sh",
"snyk-protect": "snyk protect",
"prepare": "yarn run snyk-protect"
},
"nyc": {
"all": true,
"check-coverage": true,
"per-file": true,
"include": [
"src/**/*.js"
],
"exclude": [
"test/**/*.js"
],
"reporter": [
"lcov",
"text-summary"
],
"report-dir": "./coverage"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm test",
"pre-push": "npm run lint && npm test"
}
},
"dependencies": {
"@naturacosmeticos/async-hooks-storage": "^1.0.0",
"json-stringify-safe": "^5.0.1",
"lodash": "^4.17.13",
"prettyjson": "^1.2.1",
"uuid": "^8.0.0",
"snyk": "^1.316.1"
},
"contributors": [
"Bruno Cartolari <[email protected]>",
"Daniel Arthaud <[email protected]>",
"Fabrício Campos <[email protected]>"
],
"homepage": "https://github.com/natura-cosmeticos/clio-nodejs-logger#readme",
"bugs": "https://github.com/natura-cosmeticos/clio-nodejs-logger/issues",
"keywords": [
"logger",
"troubleshooting"
],
"license": "MIT",
"snyk": true
}