-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.35 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
{
"name": "buflux",
"version": "1.0.7",
"description": "A high-performance, event-driven buffer library for Node.js and browsers, with configurable overflow strategies",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/faizanu94/buflux.git"
},
"author": "Muhammad Faizan Uddin <faizan.uddin94@gmail.com>",
"license": "MIT",
"engines": {
"node": ">=14.0.0"
},
"sideEffects": false,
"homepage": "https://github.com/faizanu94/buflux#readme",
"scripts": {
"build": "tsc",
"clean": "rm -rf dist",
"test": "vitest run",
"test:watch": "vitest --watch",
"format": "prettier --write \"**/*.{js,ts,json,md,yml}\"",
"format:check": "prettier --check \"**/*.{js,ts,json,md,yml}\"",
"lint": "eslint 'src/**/*.{js,ts}'",
"lint:fix": "eslint 'src/**/*.{js,ts}' --fix"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.44.0",
"prettier": "^3.4.2",
"typescript": "^5.1.6",
"vitest": "^0.32.2"
},
"keywords": [
"nodejs",
"javascript",
"npm",
"browser",
"isomorphic",
"queue",
"buffer",
"overflow",
"circular-buffer",
"eviction",
"fixed-capacity"
],
"files": [
"dist/",
"README.md",
"LICENSE"
]
}