-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 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
{
"name": "nautilustar-debug",
"version": "1.1.0",
"description": "Simple and pretty logger to NodeJS",
"homepage": "https://github.com/nautilustar/nautilustar-debug.git",
"bugs": "https://github.com/nautilustar/nautilustar-debug.git/issues",
"repository": {
"type": "git",
"url": "https://github.com/nautilustar/nautilustar-debug.git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"build": "tsc",
"lint": "npx eslint \"**/*.ts\"",
"lint:fix": "npx eslint \"**/*.ts\" --fix",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"debug",
"logger"
],
"author": "Pedro Silva <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/node": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.28.0",
"@typescript-eslint/parser": "^5.28.0",
"eslint": "^8.18.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-import-resolver-typescript": "^3.5.2",
"eslint-plugin-import": "^2.26.0",
"ts-node": "^10.8.1"
},
"dependencies": {
"error-callsites": "^2.0.4"
}
}