-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
122 lines (122 loc) · 3.35 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "debug-level",
"version": "3.2.1",
"description": "debug with levels",
"keywords": [
"debug",
"level"
],
"homepage": "https://github.com/commenthol/debug-level#readme",
"bugs": {
"url": "https://github.com/commenthol/debug-level/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/commenthol/debug-level.git"
},
"license": "MIT",
"author": "commenthol <commenthol@gmail.com>",
"type": "module",
"exports": {
".": {
"import": "./src/index.js",
"require": "./lib/index.cjs",
"browser": "./src/browser.js",
"types": "./types/index.d.ts"
},
"./browser": {
"import": "./src/browser.js",
"types": "./types/browser.d.ts"
},
"./serializers": {
"import": "./src/serializers/index.js",
"require": "./lib/serializers/index.cjs",
"types": "./types/serializers/index.d.ts"
},
"./ecs": {
"import": "./src/ecs/index.js",
"require": "./lib/ecs/index.cjs",
"types": "./types/ecs/index.d.ts"
},
"./package.json": "./package.json"
},
"main": "./lib/index.cjs",
"module": "./src/index.js",
"browser": "./src/browser.js",
"types": "./types",
"files": [
"src",
"lib",
"types"
],
"scripts": {
"all": "npm-run-all clean lint build coverage types",
"benchmarks": "node benchmarks/run.js > docs/benchmarks.md",
"build": "npm run clean && rollup -c",
"build:example": "cd examples/app && webpack",
"clean": "rimraf lib coverage types",
"coverage": "c8 -r lcov -r text npm test",
"coveralls": "npm run build && c8 npm test && c8 report --reporter=text-lcov | coveralls",
"example": "npm run build:example && npm run start:example",
"changelog": "conv-changelog -i CHANGELOG.md -o",
"lint": "eslint --ext .js .",
"readme": "markedpp --github -i README.md -o README.md",
"start:example": "DEBUG=* node examples/app/server.cjs",
"test": "mocha",
"test:karma": "DEBUG_LEVEL=DEBUG karma start karma.conf.cjs",
"types": "tsc"
},
"babel": {
"presets": [
"@babel/preset-env"
]
},
"dependencies": {
"asyncc": "^2.0.7",
"chalk": "^4.1.2",
"fast-safe-stringify": "^2.1.1",
"flatstr": "^1.0.12",
"map-lru": "^2.1.0",
"ms": "^2.1.3",
"sonic-boom": "^4.1.0"
},
"devDependencies": {
"@babel/cli": "^7.25.7",
"@babel/core": "^7.25.7",
"@babel/preset-env": "^7.25.7",
"assert": "^2.1.0",
"babel-loader": "^9.2.1",
"c8": "^10.1.2",
"conv-changelog": "^1.0.0",
"eslint": "^8.57.1",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.6.0",
"karma": "^6.4.4",
"karma-chrome-launcher": "^3.2.0",
"karma-coverage": "^2.2.1",
"karma-firefox-launcher": "^2.1.3",
"karma-mocha": "^2.0.1",
"karma-sourcemap-loader": "^0.4.0",
"karma-spec-reporter": "^0.0.36",
"karma-webpack": "^5.0.1",
"mocha": "^10.7.3",
"npm-run-all2": "^6.2.3",
"rimraf": "^6.0.1",
"rollup": "^4.24.0",
"sinon": "^18.0.1",
"typescript": "^5.6.2",
"webpack": "^5.95.0",
"webpack-cli": "^5.1.4"
},
"optionalDependencies": {
"debug": "^4.3.1"
},
"engines": {
"node": ">=12"
},
"c4uIgnore": {
"chalk": "^4.0.0 // ^5 is ESM only and won't work with transpiled version"
}
}