-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.59 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.59 KB
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
{
"name": "@unc/logger",
"version": "1.0.0",
"description": "Useful and pretty console logging with colors and redaction of sensitive information.",
"main": "index.js",
"scripts": {
"test": "node testAll.js",
"dev-install": "npm install --only=dev",
"pretty": "npx prettier --config '.prettierrc.json' --write .",
"eslint": "npx eslint --config '.eslintrc.json' --fix --ext .json,.js",
"quality": "npm --silent run dev-install && npm --silent run pretty && npm --silent run eslint .",
"release": "npm pack lib/",
"npm_publish": "cd src && npm publish --access public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Up-North-Coding/logger.git"
},
"keywords": [
"logger",
"redaction",
"pretty",
"colors"
],
"author": {
"name": "Vance Walsh",
"email": "vance@upnorthcoding.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/Up-North-Coding/logger/issues"
},
"homepage": "https://github.com/Up-North-Coding/logger#readme",
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"babel-eslint": "^10.1.0",
"eslint": "^7.17.0",
"eslint-config-prettier": "^7.1.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-json": "^2.1.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"prettier": "2.2.1"
}
}