-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1.11 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
{
"name": "@remigasas/circular_buffer",
"version": "1.0.2",
"description": "TypeScript/JavaScript implementation of a circular buffer, circular queue, cyclic buffer or ring buffer. A data structure that uses a single, fixed-size buffer as if it were connected end-to-end. This structure lends itself easily to buffering data streams.",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest --runInBand --detectOpenHandles --verbose",
"test:ci": "jest --ci --runInBand --silent --coverage",
"build:publish": "rm -rf dist && tsc && cp -rf package.json dist && cp -rf README.md dist",
"npm:publish": "cd dist && npm publish --access=public && cd ..",
"tsc": "tsc",
"jest": "jest"
},
"author": "remigasas",
"license": "ISC",
"devDependencies": {
"@types/jest": "26.0.23",
"jest": "27.0.4",
"typescript": "4.3.2",
"ts-jest": "27.0.3"
},
"keywords": [
"circular buffer",
"circular queue",
"cyclic buffer",
"ring buffer"
],
"repository": {
"type": "git",
"url": "https://github.com/remigasas/circular_buffer.git"
}
}