-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.66 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "fi-pin",
"version": "0.0.8",
"description": "Finnish Personal Identification Number validate + gender check",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.mjs"
}
},
"devDependencies": {
"@stylistic/eslint-plugin": "^2.10.0",
"@stylistic/eslint-plugin-ts": "^2.10.0",
"@types/node": "^18.19.61",
"@typescript-eslint/eslint-plugin": "^8.12.2",
"@typescript-eslint/parser": "^8.12.2",
"@vitest/coverage-v8": "^2.1.4",
"c8": "^10.1.2",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-deprecation": "^3.0.0",
"eslint-plugin-jsdoc": "^50.4.3",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-sonarjs": "^0.23.0",
"source-map-support": "^0.5.21",
"tsup": "^8.3.5",
"typescript": "^5.6.3",
"vite": "^5.4.10",
"vitest": "^2.1.4",
"zod": "^3.23.8"
},
"scripts": {
"build": "tsup src/index.ts --sourcemap --format cjs,esm --dts --clean",
"prepublishOnly": "npm run test && npm run build",
"test": "vitest test --run --no-isolate --coverage",
"coverage": "vitest test --run --no-isolate --reporter=dot --coverage --coverage.reporter=lcov",
"lint": "eslint . --ext .ts",
"validate": "tsc --noEmit"
},
"mocha": {
"exit": true,
"extension": [
"ts",
"js"
],
"recursive": true,
"require": [
"ts-node/register",
"source-map-support/register"
],
"reporters": [
"spec",
"mocha-junit-reporter"
]
},
"keywords": [
"pin",
"personid"
],
"files": [
"dist"
],
"nyc": {
"extension": [
".ts"
],
"include": [
"src"
],
"reporter": [
"text",
"lcovonly"
],
"all": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/mharj/hetu.git"
},
"author": "mharj",
"license": "MIT",
"bugs": {
"url": "https://github.com/mharj/hetu/issues"
},
"homepage": "https://github.com/mharj/hetu#readme",
"packageManager": "[email protected]+sha512.cce0f9de9c5a7c95bef944169cc5dfe8741abfb145078c0d508b868056848a87c81e626246cb60967cbd7fd29a6c062ef73ff840d96b3c86c40ac92cf4a813ee"
}