-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.53 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": "susi-rali",
"version": "0.2.3",
"description": "super simple rate limiter nodejs",
"main": "./lib/SusiRali.js",
"type": "module",
"scripts": {
"preinstall": "npx force-resolutions",
"manual": "mocha --timeout 120000 tests/manual/*.test.js",
"test": "mocha --timeout 120000 tests/*.test.js",
"testS": "mocha --timeout 120000 tests/susi-rali.test.js",
"testP": "mocha --timeout 120000 tests/susi-rali-parallel.test.js",
"cover": "nyc --reporter text --reporter cobertura --reporter html --reporter=lcov --lines 66 mocha --timeout 120000 --exit --unhandled-rejections=strict tests/*.test.js",
"ci-test": "echo linux ci-test&& nyc --reporter text --reporter cobertura --reporter html --reporter=lcov --lines 66 mocha --timeout 120000 --exit --unhandled-rejections=strict tests/*.test.js"
},
"private": false,
"author": "Boly38 <boly38@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/creharmony/susi-rali.git"
},
"bugs": {
"url": "https://github.com/creharmony/susi-rali/issues"
},
"keywords": [
"node",
"rate",
"limit",
"javascript",
"ratelimiter"
],
"copyright": {
"title": "susi-rali",
"years": [
2021,
2022
],
"author": "Brice Vandeputte"
},
"devDependencies": {
"chai": "^4.3.4",
"mocha": "^9.1.4",
"npm-force-resolutions": "^0.0.10",
"nyc": "^15.1.0"
},
"resolutions": {
"nanoid": "3.2.0",
"minimist": "1.2.6"
},
"jshintConfig": {
"esversion": 6
}
}