-
Notifications
You must be signed in to change notification settings - Fork 45
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.56 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.56 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
84
85
86
{
"name": "ibantools",
"version": "4.5.4",
"description": "Validation, extraction and creation of IBAN, BBAN, BIC/SWIFT numbers plus some other helpful stuff like ISO 3136-1 alpha 2 country list",
"keywords": [
"IBAN",
"BBAN",
"BIC",
"SEPA",
"SWIFT",
"ISO 3136-1 alpha-2"
],
"sideEffects": false,
"homepage": "https://github.com/Simplify/ibantools",
"bugs": "https://github.com/Simplify/ibantools/issues",
"main": "build/ibantools.cjs",
"type": "module",
"module": "jsnext/ibantools.js",
"exports": {
".": {
"types": "./build/ibantools.d.ts",
"import": "./jsnext/ibantools.js",
"require": "./build/ibantools.cjs"
}
},
"jspm": {
"main": "jsnext/ibantools.js",
"format": "esm"
},
"files": [
"build",
"jsnext",
"LICENSE",
"typings.json"
],
"directories": {
"doc": "docs"
},
"types": "build/ibantools.d.ts",
"typescript": {
"definition": "build/ibantools.d.ts"
},
"repository": {
"type": "git",
"url": "https://github.com/Simplify/ibantools.git"
},
"scripts": {
"build": "npm run build-node && npm run build-bower && npm run build-module",
"build-node": "rm -rf build && npx tsc --declaration --target es2017 --module commonjs --outDir ./build/ && cp ./build/ibantools.js ./build/ibantools.cjs",
"build-bower": "rm -rf dist && npx tsc --declaration --target es2017 --module amd --outDir ./dist/",
"build-module": "rm -rf jsnext && npx tsc --target es2017 --module es2020 --outDir ./jsnext/",
"test": "npm run build && mocha 'test/**/*.js'",
"coverage": "npm run build && c8 mocha && c8 report -e \".js\" --reporter=text-lcov > test.lcov",
"lint": "eslint 'src/**/*.ts' 'test/**/*.js'",
"prepare": "npm run build-node",
"docs": "typedoc src/ibantools.ts",
"all": "npm run test && npm run lint && npm run docs"
},
"author": {
"name": "Saša Jovanić",
"url": "https://www.simplify.ba/"
},
"license": "MIT or MPL-2.0",
"devDependencies": {
"@eslint/eslintrc": "^3.3.5",
"@eslint/js": "^10.0.1",
"@typescript-eslint/eslint-plugin": "^8.58",
"@typescript-eslint/parser": "^8.58",
"c8": "^11.0.0",
"chai": "^6.2.2",
"coveralls-next": "^6.0.1",
"docdash": "^2.0.0",
"eslint": "^10.0.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.0.0",
"mocha": "^11.0.1",
"mocha-lcov-reporter": "^1.2.0",
"prettier": "^3.0.3",
"requirejs": "^2.3.6",
"typedoc": "^0.28.18",
"typescript": "^6.0"
},
"resolutions": {
"source-map": "^0.8.0-beta.0"
}
}