-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.07 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
{
"name": "@amaabca/sensitive-param-filter",
"version": "1.2.10",
"description": "A package for filtering sensitive data (parameters, keys) from a variety of JS objects",
"main": "src/index.js",
"author": "Alberta Motor Association",
"license": "MIT",
"keywords": [
"sensitive",
"filter",
"security"
],
"repository": {
"type": "git",
"url": "https://github.com/amaabca/sensitive-param-filter.git"
},
"homepage": "https://github.com/amaabca/sensitive-param-filter",
"devDependencies": {
"eslint": "8.5.0",
"jest": "27.4.5"
},
"scripts": {
"lint": "eslint ./src ./test",
"pretest": "npm run lint",
"test": "jest --coverage",
"test:watch": "jest --watchAll=true --coverage=false"
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"src/**"
],
"coverageDirectory": "coverage",
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
},
"testMatch": [
"**/*.test.js"
]
}
}