-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.22 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
{
"name": "modern-logger",
"description": "A modern logger built on top of Winston with native support for emojis and Rollbar",
"version": "0.0.0",
"engines": {
"node": ">= 6.0.0"
},
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/hfreire/modern-logger.git"
},
"author": "Hugo Freire <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/hfreire/modern-logger/issues"
},
"homepage": "https://github.com/hfreire/modern-logger#readme",
"dependencies": {
"bluebird": "3.7.2",
"lodash": "4.17.21",
"moment": "2.29.1",
"node-emoji": "1.11.0",
"rollbar": "2.24.0",
"winston": "2.4.4"
},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-preset-env": "1.7.0",
"chai": "4.3.4",
"chai-as-promised": "7.1.1",
"eslint": "6.8.0",
"eslint-config-hfreire": "2.0.7",
"eslint-plugin-import": "2.25.2",
"eslint-plugin-jest": "25.2.2",
"eslint-plugin-json": "3.1.0",
"eslint-plugin-mocha": "6.3.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "4.3.1",
"eslint-plugin-standard": "5.0.0",
"eslint-plugin-unicorn": "19.0.1",
"istanbul": "0.4.5",
"mocha": "9.1.3",
"pre-git": "3.17.1",
"semantic-release": "17.4.7",
"snyk": "1.749.0",
"testdouble": "3.16.3"
},
"config": {
"pre-git": {
"commit-msg": "conventional",
"allow-untracked-files": true
}
},
"snyk": true,
"scripts": {
"eslint": "node_modules/.bin/eslint --ext .json --ext .js .",
"istanbul": "node_modules/.bin/istanbul cover --include-all-sources --root src --print detail ./node_modules/mocha/bin/_mocha -- --recursive test",
"snyk:test": "./node_modules/.bin/snyk test",
"snyk:protect": "./node_modules/.bin/snyk protect",
"babel": "mkdir -p lib && ./node_modules/.bin/babel src/ -d lib",
"semantic-release": "./node_modules/.bin/semantic-release",
"clean": "rm -rf lib coverage",
"lint": "npm run eslint",
"prepare": "npm run snyk:protect",
"test": "npm run clean && npm run lint && npm run istanbul",
"compile": "npm run clean && npm run babel",
"commit": "./node_modules/.bin/commit-wizard",
"prepublish": "npm run compile"
}
}