-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
42 lines (42 loc) · 970 Bytes
/
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
{
"name": "pnr-scanner",
"version": "0.6.0",
"description":
"Finds potentially real Swedish social security numbers (personnummer) ",
"bin": "bin/bin.js",
"scripts": {
"test": "jest --color",
"precommit": "lint-staged"
},
"keywords": ["GDPR", "personnummer", "SSN"],
"author": {
"name": "Christoffer Hasselberg",
"email": "[email protected]"
},
"license": "MIT",
"repository": "stofolus/pnr-scanner",
"dependencies": {
"commander": "^2.15.1",
"glob": "^7.1.2",
"istextorbinary": "^2.2.1",
"luxon": "^1.2.1"
},
"devDependencies": {
"husky": "^0.14.3",
"jest": "^24.7.1",
"lint-staged": "^8.1.5",
"prettier": "1.12.1"
},
"lint-staged": {
"*.{js,json,css,md}": ["prettier --write", "git add"]
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"**/*.{js,jsx}",
"!**/node_modules/**",
"!**/coverage/**",
"!**/integration/**"
]
}
}