-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 1.85 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 1.85 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
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
{
"name": "ocrgenerator",
"version": "3.0.0",
"description": "Swedish invoice no generator",
"license": "MIT",
"author": {
"name": "Zerodep AB",
"url": "https://github.com/zerodep"
},
"type": "module",
"main": "main.cjs",
"module": "index.js",
"browser": "ocrgenerator.cjs",
"types": "./types/index.d.ts",
"exports": {
"import": "./index.js",
"require": "./main.cjs",
"browser": "./ocrgenerator.cjs",
"types": "./types/index.d.ts"
},
"sideEffects": false,
"repository": {
"type": "git",
"url": "git://github.com/zerodep/ocrgenerator.git"
},
"bugs": {
"url": "https://github.com/zerodep/ocrgenerator/issues"
},
"scripts": {
"test": "mocha",
"posttest": "npm run lint && npm run dist && npm run tsd && npm run test:md",
"lint": "eslint . --cache && prettier . --check --cache",
"dist": "rollup -c && dts-buddy",
"tsd": "tsd",
"prepack": "npm run dist",
"test:md": "texample",
"cov:html": "c8 -r html -r text mocha",
"test:lcov": "c8 -r lcov mocha && npm run lint"
},
"keywords": [
"bankgirot",
"fakturanummer",
"generator",
"invoice number",
"luhn",
"modulo 10",
"ocr",
"plusgirot",
"referenskontroll",
"referensnr",
"sverige",
"validator"
],
"devDependencies": {
"@eslint/js": "^10.0.1",
"@rollup/plugin-commonjs": "^29.0.0",
"c8": "^12.0.0",
"dts-buddy": "^0.8.0",
"eslint": "^10.4.1",
"globals": "^17.6.0",
"happy-dom": "^20.9.0",
"mocha": "^11.0.1",
"prettier": "^3.5.3",
"rollup": "^4.14.3",
"texample": "^1.0.0",
"tsd": "^0.33.0"
},
"overrides": {
"mocha": {
"yargs": "^18.0.0"
}
},
"files": [
"index.js",
"types/index.d.ts",
"types/index.d.ts.map",
"main.cjs",
"ocrgenerator.cjs"
],
"directories": {
"test": "test"
}
}