-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
32 lines (32 loc) · 891 Bytes
/
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
{
"name": "leaky-bucket",
"description": "A fast and efficient leaky bucket implementation",
"version": "4.1.4",
"homepage": "https://github.com/linaGirl/leaky-bucket",
"author": "Lina van der Weg <[email protected]> (http://vanderweg.ch/)",
"license": "MIT",
"repository": {
"url": "https://github.com/linaGirl/leaky-bucket.git",
"type": "git"
},
"engines": {
"node": ">=v12"
},
"bugs": {
"url": "https://github.com/linaGirl/leaky-bucket/issues"
},
"dependencies": {},
"devDependencies": {
"section-tests": "^3.2.0"
},
"keywords": [
"leaky-bucket",
"leaky",
"bucket"
],
"scripts": {
"test": "node --experimental-modules --no-warnings ./node_modules/.bin/section ./test/*.js --ld"
},
"main": "./src/LeakyBucket.js",
"type": "module"
}