-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.61 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
{
"name": "garage-utils",
"version": "6.0.1",
"description": "Common utilities for Node.js/Express applications at the IBM Garage for Cloud.",
"repository": {
"type": "git",
"url": "https://github.com/ibm-garage/node-garage-utils.git"
},
"author": "Dave Steinberg <[email protected]>",
"license": "MIT",
"main": "index.js",
"scripts": {
"test": "jest --verbose",
"test:watch": "jest --watchAll",
"test:coverage": "jest --verbose --coverage",
"lint": "eslint index.js lib",
"format": "prettier --write '**/*.@(js|json)'",
"release": "standard-version"
},
"engines": {
"node": ">=12.13.0"
},
"files": [
"index.js",
"lib/"
],
"dependencies": {
"bunyan": "^1.8.15",
"bunyan-prettystream-circularsafe": "^0.3.1"
},
"devDependencies": {
"eslint": "^8.13.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.5.1",
"prettier": "^2.6.2",
"standard-version": "^9.3.2"
},
"eslintConfig": {
"root": true,
"env": {
"node": true,
"es2017": true,
"jest": true
},
"parserOptions": {
"ecmaVersion": 2019
},
"extends": [
"eslint:recommended",
"plugin:prettier/recommended"
],
"rules": {
"no-console": "off",
"no-unused-vars": [
"error",
{
"vars": "all",
"args": "none"
}
],
"global-require": "error",
"no-new-require": "error",
"no-path-concat": "error",
"no-var": "error",
"no-process-exit": "off"
}
},
"prettier": {
"printWidth": 100
}
}