-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.11 KB
/
package.json
File metadata and controls
73 lines (73 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
{
"name": "@toolbuilder/dynamic-ring-buffer",
"version": "0.1.6",
"description": "A ring buffer that manages memory in chunks to support large capacity for data bursts with low overhead when small.",
"keywords": [
"ring buffer",
"allocation",
"circular queue",
"buffer",
"iterable",
"ES2015",
"module",
"bundles"
],
"homepage": "https://github.com/toolbuilder/dynamic-ring-buffer#readme",
"bugs": {
"url": "https://github.com/toolbuilder/dynamic-ring-buffer/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/toolbuilder/dynamic-ring-buffer.git"
},
"license": "MIT",
"type": "module",
"types": "./src/dynamic-ring-buffer.d.ts",
"exports": {
"require": "./cjs/dynamic-ring-buffer.js",
"types": "./src/dynamic-ring-buffer.d.ts",
"default": "./src/dynamic-ring-buffer.js"
},
"main": "cjs/dynamic-ring-buffer.js",
"module": "src/dynamic-ring-buffer.js",
"files": [
"cjs",
"src"
],
"scripts": {
"build": "run-s build:*",
"build:cjs": "rollup -c rollup.config.cjs.js",
"build:types": "tsc",
"check": "run-s build check:*",
"check:packagejson": "npmPkgJsonLint .",
"check:packfile": "rollup -c rollup.config.test.js",
"check:src": "standard src test",
"check:test": "run-s test",
"check:uncommitted": "uncommitted",
"prerelease": "run-s check",
"release": "commit-and-tag-version",
"test": "pta --reporter tap \"test/**/*test.js\""
},
"dependencies": {
"@toolbuilder/list": "^1.2.3",
"@toolbuilder/ring-buffer": "^1.2.3"
},
"devDependencies": {
"@toolbuilder/package-json-lint-config": "^0.1.1",
"@toolbuilder/ring-buffer-tests": "^0.1.4",
"@toolbuilder/rollup-plugin-test-tools": "^1.1.0",
"commit-and-tag-version": "^12.5.0",
"dequal": "^2.0.3",
"npm-package-json-lint": "^8.0.0",
"npm-run-all2": "^7.0.1",
"pta": "1.2.0",
"rollup": "^4.24.4",
"standard": "^17.1.2",
"typescript": "^5.6.3",
"uncommitted": "^1.0.0",
"zora": "5.0.3"
},
"npmpackagejsonlint": {
"extends": "@toolbuilder/package-json-lint-config"
}
}