-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
77 lines (77 loc) · 2.04 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
{
"name": "loggit",
"version": "1.1.1",
"description": "A simple and beautiful logging utility for NodeJS.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"lint": "eslint ./src/**/*.ts --report-unused-disable-directives",
"lint:fix": "eslint ./src/**/*.ts --fix --report-unused-disable-directives",
"lint:pre-commit": "eslint --fix --report-unused-disable-directives",
"test": "npm run lint && npm run test:unit",
"test:unit": "jest",
"test:unit:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:coverage:view": "npm run test:coverage && open ./coverage/lcov-report/index.html -a Google\\ Chrome",
"release": "np --no-yarn"
},
"files": [
"dist/**/*"
],
"engines": {
"node": ">= 12"
},
"dependencies": {
"@types/center-align": "^1.0.0",
"center-align": "^1.0.1",
"chalk": "^4.1.0"
},
"devDependencies": {
"@types/jest": "^26.0.20",
"@typescript-eslint/eslint-plugin": "^4.14.1",
"@typescript-eslint/parser": "^4.14.1",
"coveralls": "^3.1.0",
"eslint": "^7.19.0",
"eslint-config-himynameisdave": "^4.0.1",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-unicorn": "^27.0.0",
"husky": "^4.3.8",
"jest": "^26.6.3",
"lint-staged": "^10.5.3",
"np": "^7.2.0",
"ts-jest": "^26.5.0",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts,!*.spec.ts": "npm run lint:pre-commit"
},
"keywords": [
"log",
"logs",
"logger",
"logging",
"console.log",
"node-logging",
"console"
],
"author": "Dave Lunny",
"license": "MIT",
"bugs": {
"url": "https://github.com/himynameisdave/loggit/issues"
},
"homepage": "https://github.com/himynameisdave/loggit",
"repository": {
"type": "git",
"url": "https://github.com/himynameisdave/loggit.git"
}
}