-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
66 lines (66 loc) · 1.38 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
{
"name": "singapore-nric",
"version": "2.0.0",
"description": "Generate & Validate Singapore NRIC (National Registration Identity Card) Numbers",
"author": {
"name": "Samuel Liew",
"url": "https://github.com/samliew"
},
"contributors": [
{
"name": "Goh Sheen An",
"url": "https://github.com/sheen4n"
}
],
"license": "MIT",
"type": "module",
"main": "dist/nric.js",
"types": "dist/nric.d.ts",
"scripts": {
"build": "tsc",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/samliew/singapore-nric.git"
},
"homepage": "https://github.com/samliew/singapore-nric#readme",
"bugs": {
"url": "https://github.com/samliew/singapore-nric/issues"
},
"keywords": [
"SG",
"SGP",
"Singapore",
"numbers",
"generate",
"generator",
"validate",
"validator",
"algorithm",
"NRIC",
"National Registration Identity Card"
],
"jest": {
"verbose": true,
"moduleFileExtensions": [
"js",
"jsx",
"ts",
"tsx"
],
"moduleDirectories": [
"node_modules",
"src"
],
"transform": {},
"preset": "ts-jest"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"eslint": "^8.9.0",
"jest": "^29.1.2",
"ts-jest": "^29.1.2",
"typescript": "^5.4.2"
}
}