-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.12 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
{
"name": "@auxilin/common-logger",
"version": "0.5.1",
"description": "Simple, preconfigured logger",
"author": "Auxilin",
"private": false,
"main": "src/index.js",
"keywords": [
"logger",
"winston",
"auxilin"
],
"license": "MIT",
"scripts": {
"test": "run-s test:*",
"test:eslint": "eslint ./",
"test:mocha": "mocha --exit --recursive -c -R spec src/*.spec.js",
"add-contributor": "all-contributors add",
"generate-contributors": "all-contributors generate"
},
"dependencies": {
"app-root-path": "2.2.1",
"winston": "3.2.1"
},
"devDependencies": {
"@auxilin/eslint-config": "0.2.0",
"all-contributors-cli": "6.9.0",
"babel-eslint": "10.0.3",
"chai": "4.2.0",
"del": "5.1.0",
"eslint": "6.3.0",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-react": "7.14.3",
"eslint-plugin-react-hooks": "1.7.0",
"mocha": "6.2.0",
"npm-run-all": "4.1.5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/auxilincom/common-logger.git"
},
"engines": {
"node": ">= 8"
}
}