-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
91 lines (91 loc) · 2.27 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
{
"name": "strtok3",
"version": "10.0.1",
"description": "A promise based streaming tokenizer",
"author": {
"name": "Borewit",
"url": "https://github.com/Borewit"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/Borewit"
},
"scripts": {
"clean": "del-cli 'lib/**/*.js' 'lib/**/*.js.map' 'lib/**/*.d.ts' 'test/**/*.js' 'test/**/*.js.map'",
"compile-src": "tsc -p lib",
"compile-test": "tsc -p test",
"compile": "yarn run compile-src && yarn run compile-test",
"build": "yarn run clean && yarn run compile",
"eslint": "eslint lib test",
"lint-md": "remark -u preset-lint-recommended .",
"lint-ts": "biome check",
"lint": "yarn run lint-md && yarn run lint-ts",
"fix": "yarn run biome lint --write",
"test": "mocha",
"test-coverage": "c8 yarn run test",
"send-codacy": "c8 report --reporter=text-lcov | codacy-coverage",
"start": "yarn run compile && yarn run lint && yarn run cover-test"
},
"engines": {
"node": ">=16"
},
"repository": {
"type": "git",
"url": "https://github.com/Borewit/strtok3.git"
},
"license": "MIT",
"type": "module",
"exports": {
".": {
"node": "./lib/index.js",
"default": "./lib/core.js"
},
"./core": "./lib/core.js"
},
"types": "lib/index.d.ts",
"files": [
"lib/**/*.js",
"lib/**/*.d.ts"
],
"bugs": {
"url": "https://github.com/Borewit/strtok3/issues"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/chai": "^5.0.1",
"@types/chai-as-promised": "^8.0.1",
"@types/debug": "^4.1.12",
"@types/mocha": "^10.0.10",
"@types/node": "^22.10.5",
"c8": "^10.1.3",
"chai": "^5.1.2",
"chai-as-promised": "^8.0.1",
"del-cli": "^6.0.0",
"mocha": "^11.0.1",
"remark-cli": "^12.0.1",
"remark-preset-lint-recommended": "^7.0.0",
"token-types": "^6.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.7.3",
"uint8array-extras": "^1.4.0"
},
"dependencies": {
"@tokenizer/token": "^0.3.0",
"peek-readable": "^5.3.1"
},
"keywords": [
"tokenizer",
"reader",
"token",
"async",
"promise",
"parser",
"decoder",
"binary",
"endian",
"uint",
"stream",
"streaming"
],
"packageManager": "[email protected]"
}