-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
50 lines (50 loc) · 1.38 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
{
"name": "kontonummer",
"version": "4.0.1",
"description": "A validator for swedish banking numbers",
"author": "Svante Bengtson <[email protected]> (https://swantzter.se)",
"license": "MIT",
"homepage": "https://kontonummer.se",
"main": "dist/esm/index.js",
"types": "dist/types/index.d.ts",
"exports": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js",
"default": "./dist/esm/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/swantzter/kontonummer.git"
},
"scripts": {
"build": "tsc -p tsconfig.esm.json && tsc -p tsconfig.cjs.json",
"build:watch": "tsc --watch -p tsconfig.production.json",
"test": "NODE_OPTIONS='--loader tsx' mocha test/**/*.test.ts",
"test:coverage": " c8 -r lcov -r text npm test",
"lint": "eslint . --ignore-path .gitignore",
"lint:fix": "npm run lint -- --fix",
"typecheck": "tsc --noEmit",
"prepack": "npm run build"
},
"devDependencies": {
"@types/mocha": "^10.0.1",
"@types/node": "^16.11.57",
"c8": "^7.12.0",
"eslint": "^8.23.0",
"eslint-config-standard-with-typescript": "^34.0.0",
"mocha": "^10.0.0",
"tsx": "^3.9.0",
"typescript": "^4.2.4"
},
"keywords": [
"banking",
"bank account",
"sorting code",
"clearing number",
"clearingnummer",
"konto",
"bankkonto",
"format",
"verify"
]
}