-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.9 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.9 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
{
"name": "@platformatic/dynamic-buffer",
"version": "0.4.0",
"description": "A small utility class to work with logically contiguous binary data split across multiple Buffer chunks.",
"homepage": "https://github.com/platformatic/dynamic-buffer",
"author": "Platformatic Inc. <oss@platformatic.dev> (https://platformatic.dev)",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/platformatic/dynamic-buffer.git"
},
"keywords": [],
"bugs": {
"url": "https://github.com/platformatic/dynamic-buffer/issues"
},
"private": false,
"files": [
"dist",
"LICENSE",
"README.md"
],
"type": "module",
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "rm -rf dist && tsc -p tsconfig.base.json",
"postbuild": "node scripts/postbuild.ts",
"lint": "eslint --cache",
"typecheck": "tsc -p . --noEmit",
"format": "prettier -w src test",
"test": "c8 -c test/config/c8-local.json node --test --test-reporter=cleaner-spec-reporter --test-timeout=60000 'test/**/*.test.ts'",
"test:ci": "c8 -c test/config/c8-ci.json node --test --test-reporter=cleaner-spec-reporter --test-timeout=60000 'test/**/*.test.ts'",
"ci": "npm run build && npm run lint && npm run test:ci",
"prepublishOnly": "npm run build && npm run lint",
"postpublish": "git push origin && git push origin -f --tags"
},
"devDependencies": {
"@platformatic/tsconfig": "^0.2.0",
"@types/node": "^25.2.3",
"@types/semver": "^7.7.1",
"bl": "^6.1.6",
"c8": "^10.1.3",
"cleaner-spec-reporter": "^1.0.3",
"eslint": "^9.39.0",
"eslint-plugin-prettier": "^5.5.5",
"mitata": "^1.0.34",
"neostandard": "^0.12.2",
"prettier": "^3.8.1",
"prettier-plugin-space-before-function-paren": "^0.0.10",
"semver": "^7.7.4",
"typescript": "^5.9.3"
},
"engines": {
"node": ">= 22.19.0"
}
}