-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.47 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.47 KB
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.3",
"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 <jarle@fagerbua.no>",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@types/jest": "30.0.0",
"@types/node": "24.13.2",
"jest": "30.4.2",
"mockdate": "3.0.5",
"timezone-mock": "1.4.2",
"ts-jest": "29.4.11",
"typedoc": "0.28.19",
"typedoc-plugin-markdown": "4.12.0",
"typescript": "6.0.3"
},
"prettier": {
"trailingComma": "all",
"singleQuote": true
},
"jest": {
"transform": {
"^.+\\.tsx?$": ["ts-jest", { "tsconfig": "tsconfig.test.json" }]
}
}
}