-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 914 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 914 Bytes
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
{
"name": "nric-validator",
"version": "0.3.7",
"author": "Tran Son Hoang <hayden.tran.d@gmail.com> (https://betterfullstack.com)",
"description": "An Utility to validate Malaysia NRIC",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/hoangtranson/nric-validator.git"
},
"keywords": [
"NRIC",
"Malaysia NRIC",
"MyKad"
],
"scripts": {
"test": "jest --config jestconfig.json",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "tslint -p tsconfig.json",
"build": "tsc"
},
"license": "MIT",
"devDependencies": {
"@types/jest": "^26.0.20",
"@types/validator": "^13.1.3",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"ts-jest": "^26.5.3",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.2.3"
}
}