-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.42 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.42 KB
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
{
"name": "high-pass-caller",
"version": "1.0.0",
"description": "Wrap a function that is called only if the wrapper is called fast enough",
"keywords": [
"high-pass",
"debounce",
"throttle",
"caller"
],
"license": "MIT",
"author": "Gabriel Montes <gabriel@bloq.com>",
"files": [
"src"
],
"main": "src/index.js",
"repository": "bloq/high-pass-caller",
"scripts": {
"check": "dependency-check . --no-dev",
"check:outdated": "npm-check -i husky",
"coverage": "nyc --lines 95 --functions 95 --branches 95 --reporter=lcov --reporter=text npm test",
"lint": "eslint --cache .",
"prepublishOnly": "tag-matches",
"test": "mocha"
},
"devDependencies": {
"@types/chai": "^4.2.6",
"@types/mocha": "^5.2.7",
"chai": "^4.2.0",
"check-tag-matches": "^1.0.0",
"debug": "^4.1.1",
"dependency-check": "^4.1.0",
"eslint": "^6.7.2",
"eslint-config-bloq": "^2.1.0",
"eslint-config-prettier": "^6.7.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsdoc": "^18.4.3",
"eslint-plugin-mocha": "^6.2.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-prefer-arrow": "^1.1.5",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-require-path-exists": "^1.1.9",
"eslint-plugin-standard": "^4.0.0",
"husky": "^1.3.1",
"mocha": "^6.0.1",
"npm-check": "^5.9.0",
"nyc": "^14.1.1"
}
}