-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
51 lines (51 loc) · 1.43 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
{
"name": "norwegian-national-id-validator",
"version": "3.1.1",
"description": "Validate norwegian national identity numbers",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"generate-docs": "typedoc --readme none --plugin typedoc-plugin-markdown --disableSources --excludePrivate false --out docs src",
"generate-html-docs": "typedoc --readme none --out html src",
"prepare": "npm run build && cp export.flow.js dist/index.flow.js",
"build": "tsc",
"start": "tsc --watch",
"test": "jest"
},
"homepage": "https://github.com/mikaello/norwegian-national-id-validator",
"repository": {
"type": "git",
"url": "https://github.com/mikaello/norwegian-national-id-validator.git"
},
"bugs": "https://github.com/mikaello/norwegian-national-id-validator/issues",
"keywords": [
"identity-number",
"id-number",
"ssn",
"fødselsnummer",
"personnummer"
],
"author": "Jarle Fagerheim <[email protected]>",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@types/jest": "29.5.14",
"@types/node": "22.8.6",
"jest": "29.7.0",
"mockdate": "3.0.5",
"timezone-mock": "1.3.6",
"ts-jest": "29.2.5",
"typedoc": "0.26.10",
"typedoc-plugin-markdown": "4.2.9",
"typescript": "5.6.3"
},
"prettier": {
"trailingComma": "all",
"singleQuote": true
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
}
}
}