-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.68 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
{
"name": "debug-fabulous",
"version": "2.0.8",
"description": "visionmedia debug extensions rolled into one",
"keywords": [
"debug",
"lazy",
"lazy-eval"
],
"repository": {
"type": "git",
"url": "http://www.github.com/nmccready/debug-fabulous"
},
"license": "MIT",
"author": "Nicholas McCready",
"contributors": [
"Joe Ibershoff (https://github.com/zacronos)"
],
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"build": "rm -rf lib && npx tsc",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"docs:api:markdown": "npx typedoc --theme markdown --exclude ./src/test --out ./docs/api ./src",
"docs:api:website": "npx typedoc --exclude ./src/test --out docs ./src",
"lint": "npm run build && eslint --ext .js,.ts,.tsx *.js src test --color",
"mocha": "mocha",
"prepack": "npm run build",
"prepare": "npx sort-package-json",
"test": "npm run build && npx jest",
"test:ci": "npm run build && npm run test --coverage && npm run coveralls",
"preversion": "npm run build"
},
"dependencies": {
"debug": "^4",
"memoizee": "0.4"
},
"devDependencies": {
"@biiaidt/node-memwatch": "2.0.1",
"@commitlint/cli": "^19",
"@commitlint/config-conventional": "^19",
"@types/debug": "^4",
"@types/jest": "^29.5.13",
"@znemz/js-common-eslint-config": "^0.2.2",
"@znemz/react-extras-jest": "1.5.1",
"JSONStream": "1.X",
"commitlint": "19",
"config": "^3.2.2",
"coveralls": "^3.0.4",
"hook-std": "0.X",
"jest": "^29.7.0",
"prettier": "^1.18.2",
"sort-package-json": "^2.10.1",
"typescript": "^5.6.2"
},
"engines": {
"node": ">= 14"
}
}