-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.76 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
{
"name": "debug-next",
"version": "0.3.0",
"description": "A feature-enhanced TypeScript drop-in replacement for a very popular and simple-to-use debug module.",
"main": "./dist/index.js",
"keywords": [
"debug",
"log",
"debugger"
],
"files": [
"dist",
"README.md"
],
"scripts": {
"jest": "jest --silent=false --logHeapUsage",
"test": "yarn jest --maxWorkers=75%",
"lint": "yarn lint:build && yarn lint:ci",
"lint:build": "tsc --project tsconfig.build.json --noEmit",
"lint:ci": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"build": "tsc --project tsconfig.build.json",
"prepublishOnly": "yarn lint:ci && yarn build",
"tsc": "tsc"
},
"author": "calvintwr",
"license": "MIT",
"dependencies": {
"debug": "git+https://github.com/calvintwr/debug.git#329eefccf7596bfd3b9ec821588b2b0dce128648"
},
"devDependencies": {
"@types/debug": "^4.1.7",
"@types/jest": "^29.2.6",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"eslint": "^8.32.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.3.1",
"jest-mock-extended": "^3.0.1",
"prettier": "^2.8.3",
"require-json5": "^1.3.0",
"ts-jest": "^29.0.5",
"tsc": "^2.0.3",
"typescript": "^4.9.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/calvintwr/debug-next.git"
},
"bugs": {
"url": "https://github.com/calvintwr/debug-next/issues"
},
"homepage": "https://github.com/calvintwr/debug-next#readme"
}