-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
46 lines (46 loc) · 1.04 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": "valid-south-african-id",
"version": "1.0.2",
"description": "🇿🇦 Perform regex and checksum match to check if given number string is a valid South African ID",
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/tiaanduplessis/valid-south-african-id.git"
},
"homepage": "https://github.com/tiaanduplessis/valid-south-african-id",
"bugs": "https://github.com/tiaanduplessis/valid-south-african-id/issues",
"author": "Tiaan du Plessis",
"bin": {
"valid-sa-id": "cli.js"
},
"scripts": {
"test": "jest --env=node",
"coverage": "npm test -- --coverage",
"lint": "standard --fix"
},
"engines": {
"node": ">=14"
},
"files": [
"index.js",
"cli.js"
],
"keywords": [
"id",
"regex",
"checksum",
"match",
"south-africa",
"south-african",
"sa",
"valid-south-african-id"
],
"dependencies": {
"mod10-check-digit": "^1.0.0"
},
"devDependencies": {
"jest": "28.1.0",
"standard": "17.0.0"
}
}