-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
90 lines (90 loc) · 2.36 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
{
"name": "@tokenizer/http",
"version": "0.9.2",
"description": "HTTP tokenizer for Node.js and browser",
"type": "module",
"exports": {
"default": "./lib/index.js"
},
"types": "lib/index.d.ts",
"files": [
"lib/**/*.js",
"lib/**/*.d.ts"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Borewit/tokenizer-http.git"
},
"author": {
"name": "Borewit",
"url": "https://github.com/Borewit"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/Borewit"
},
"keywords": [
"xhr",
"http",
"sttok3",
"RFC-7233",
"range",
"chunk",
"https",
"client",
"meta",
"metadata",
"audio",
"media",
"tags"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/Borewit/tokenizer-http/issues"
},
"scripts": {
"clean": "del-cli 'lib/**/*.js' 'lib/**/*.js.map' 'lib/**/*.d.ts' 'test/**/*.js' 'test/**/*.js.map' coverage",
"compile-lib": "tsc -p lib/tsconfig.json",
"compile-test": "tsc -p test/tsconfig.json",
"compile": "yarn run compile-lib && yarn run compile-test",
"prepublishOnly": "yarn run build",
"build": "yarn run clean && yarn run compile",
"lint-ts": "biome check",
"lint": "yarn run lint-ts",
"karma": "karma start karma.conf.cjs",
"test": "mocha",
"karma-once": "karma start --browsers ChromeHeadless --single-run karma.conf.cjs",
"karma-headless": "karma start --single-run --reporters coverage-istanbul,spec,progress"
},
"devDependencies": {
"@biomejs/biome": "=1.9.4",
"@music-metadata/test-audio": "^0.1.0",
"@types/chai": "^5.0.1",
"@types/debug": "^4.1.12",
"@types/mocha": "^10.0.10",
"@types/node": "^22.10.1",
"chai": "^5.1.2",
"coveralls": "^3.1.1",
"del-cli": "^6.0.0",
"karma": "^6.4.4",
"karma-chrome-launcher": "^3.2.0",
"karma-coverage-istanbul-reporter": "^3.0.3",
"karma-firefox-launcher": "^2.1.3",
"karma-mocha": "^2.0.1",
"karma-sourcemap-loader": "^0.4.0",
"karma-webpack": "^5.0.1",
"mocha": "^11.0.1",
"music-metadata": "^10.6.2",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"typescript": "^5.7.2",
"webpack": "^5.97.1",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"@tokenizer/range": "^0.12.0",
"debug": "^4.3.7",
"strtok3": "^10.0.1"
},
"packageManager": "yarn@4.4.1"
}