-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
45 lines (45 loc) · 1.04 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
{
"name": "@ambassify/throttle",
"version": "3.0.1",
"description": "Throttle depending on function arguments.",
"main": "src/index.js",
"type": "commonjs",
"engines": {
"node": ">=18"
},
"scripts": {
"test": "npm -s run test:lint & npm -s run test:unit",
"test:lint": "eslint .",
"test:unit": "nyc mocha",
"release": "npm version patch && npm publish"
},
"keywords": [
"throttle",
"cache"
],
"author": "Ambassify <[email protected]>",
"license": "MIT",
"devDependencies": {
"eslint": "^8.57.0",
"eslint-config-ambassify": "^4.0.1",
"mocha": "^7.1.2",
"mocha-circleci-reporter": "0.0.3",
"mock-require": "^3.0.3",
"nyc": "^15.0.1",
"sinon": "^9.0.2"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ambassify/throttle.git"
},
"bugs": {
"url": "https://github.com/ambassify/throttle/issues"
},
"homepage": "https://github.com/ambassify/throttle#readme",
"dependencies": {
"hash-it": "^6.0.0"
}
}