-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.22 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
{
"name": "lite-fifo",
"version": "0.3.4",
"license": "MIT",
"main": "src/index.js",
"types": "types/index.d.ts",
"homepage": "https://github.com/kleinron/lite-fifo.git#readme",
"description": "Lightweight, optimized, and efficient implementations for FIFO (queue) data structure",
"devDependencies": {
"mocha": "10.1.0",
"seedrandom": "^3.0.5",
"semistandard": "^16.0.1",
"typescript": "^4.6.4"
},
"scripts": {
"lint": "semistandard",
"lint-with-fix": "semistandard --fix",
"test": "mocha test/ --recursive --check-leaks --require test/src/setup.js",
"test-stress": "export STRESS_TESTS_ENABLED=true && export STRESS_TESTS_COUNT=10000 && mocha test/ --recursive --check-leaks --require test/src/setup.js",
"types": "node ./node_modules/typescript/bin/tsc"
},
"author": {
"name": "Ron Klein",
"email": "[email protected]",
"url": "https://ronklein.co.il"
},
"repository": {
"type": "git",
"url": "https://github.com/kleinron/lite-fifo.git"
},
"keywords": [
"queue",
"fifo",
"lite",
"lightweight",
"array",
"data-structure",
"data structure",
"zero-dependency"
],
"semistandard": {
"env": [
"mocha"
]
}
}