-
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.11 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.11 KB
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
{
"name": "token-types",
"version": "6.1.2",
"description": "Common token types for decoding and encoding numeric and string values",
"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' 'test/**/*.d.ts' 'test/**/*.js' 'test/**/*.js.map'",
"build": "npm run compile",
"compile-src": "tsc --p lib --sourceMap false",
"compile-test": "tsc --p test",
"compile": "npm run compile-src && npm run compile-test",
"lint:ts": "biome check",
"lint:md": "remark -u preset-lint-recommended .",
"lint": "npm run lint:md && npm run lint:ts",
"test": "mocha",
"test-coverage": "c8 npm run test",
"send-codacy": "c8 report --reports-dir=./.coverage --reporter=text-lcov | codacy-coverage",
"update-biome": "yarn add -D --exact @biomejs/biome && npx @biomejs/biome migrate --write"
},
"engines": {
"node": ">=14.16"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Borewit/token-types.git"
},
"files": [
"lib/index.js",
"lib/index.d.ts"
],
"license": "MIT",
"type": "module",
"exports": "./lib/index.js",
"types": "lib/index.d.ts",
"bugs": {
"url": "https://github.com/Borewit/token-types/issues"
},
"devDependencies": {
"@biomejs/biome": "2.3.10",
"@types/chai": "^5.2.2",
"@types/mocha": "^10.0.10",
"@types/node": "^25.0.3",
"c8": "^10.1.3",
"chai": "^6.2.2",
"del-cli": "^7.0.0",
"mocha": "^11.7.5",
"remark-cli": "^12.0.1",
"remark-preset-lint-recommended": "^7.0.0",
"source-map-support": "^0.5.21",
"ts-node": "^10.9.1",
"typescript": "^5.9.3"
},
"dependencies": {
"@borewit/text-codec": "^0.2.1",
"@tokenizer/token": "^0.3.0",
"ieee754": "^1.2.1"
},
"remarkConfig": {
"plugins": [
"preset-lint-recommended"
]
},
"keywords": [
"token",
"integer",
"unsigned",
"numeric",
"float",
"IEEE",
"754",
"strtok3"
],
"packageManager": "yarn@4.9.2"
}