-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 1.97 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "@pondevelopment/data-buffer-cache",
"version": "1.0.1",
"description": "Prevent bulk requests to your backend, buffer and cache simultaneous requests.",
"type": "module",
"main": "src/index.js",
"license": "GPL-3.0",
"files": [
"src/index.js",
"src/Cache.js",
"src/DataBuffer.js",
"src/DataBufferController.js"
],
"keywords": [
"javascript",
"buffer",
"cache"
],
"scripts": {
"lint": "ponstandard src",
"lint:report": "ponstandard src | standard-reporter --json > report.json",
"lint:fix": "ponstandard src --fix",
"test": "jest --detectOpenHandles",
"test:watch": "jest src --watch",
"cpd": "node_modules/jscpd/bin/jscpd src",
"vulnerabilities": "npm audit --production"
},
"author": {
"name": "Berry Piest",
"email": "[email protected]",
"url": "https://www.pon.com"
},
"contributors": [
{
"name": "Berry Piest",
"email": "[email protected]"
},
{
"name": "Pieter Wigboldus",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "https://github.com/pondevelopment/data-buffer-cache.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"devDependencies": {
"@babel/core": "^7.17.10",
"@babel/eslint-parser": "^7.17.0",
"@babel/plugin-transform-modules-commonjs": "^7.17.9",
"@babel/preset-env": "^7.12.10",
"@jest/globals": "^28.1.0",
"@pondevelopment/ponstandard": "^1.0.0",
"babel-jest": "^28.1.0",
"eslint": "^8.15.0",
"esm": "^3.2.25",
"jest": "^28.0.1",
"jest-junit": "^13.2.0",
"jest-sonar-reporter": "^2.0.0",
"jscpd": "^3.4.5",
"prettier": "^2.6.2",
"redis": "^4.1.0",
"standard": "^17.0.0",
"standard-reporter": "^1.0.5"
},
"engines": {
"node": ">= 16.14"
},
"ponstandard": {
"parser": "@babel/eslint-parser",
"globals": [
"btoa"
],
"ignore": [
"**/__fixtures__/"
]
}
}