-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
61 lines (61 loc) · 1.41 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
{
"name": "personnummer",
"description": "Validate Swedish personal identity numbers",
"version": "3.2.1",
"license": "MIT",
"homepage": "https://github.com/personnummer/js",
"author": {
"name": "Fredrik Forsmo",
"email": "[email protected]",
"url": "https://frozzare.com"
},
"repository": {
"type": "git",
"url": "git://github.com/personnummer/js.git"
},
"bin": {
"personnummer": "bin/personnummer"
},
"files": [
"dist/**/*"
],
"engines": {
"node": "^18.18.0 || >=20.0.0"
},
"scripts": {
"build": "pine build",
"format": "prettier --write 'src/**/*.ts'",
"lint": "eslint src --ext .ts",
"prepublishOnly": "npm run build",
"test": "pine test"
},
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/types",
"devDependencies": {
"@frozzare/pkg": "^1.0.7",
"@pinefile/pine": "^2.0.3",
"@types/jest": "^29.5.14",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "^8.57.1",
"is-ci": "^3.0.1",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"typescript": "^5.6.3",
"undici": "^6.21.0",
"vitest": "^2.1.5"
},
"keywords": [
"personnummer",
"personal",
"identity",
"social",
"security",
"numbers"
],
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/sweidproject"
}
}