-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathpackage.json
77 lines (77 loc) · 2.29 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
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
{
"name": "ibantools",
"version": "4.5.1",
"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": "jsnext/ibantools.js",
"type": "module",
"module": "jsnext/ibantools.js",
"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 src/*.ts --declaration --target es2017 --module commonjs --outDir ./build/",
"build-bower": "rm -rf dist && npx tsc src/*.ts --declaration --target es2017 --module amd --outDir ./dist/",
"build-module": "rm -rf jsnext && npx tsc src/*.ts --target es2017 --module es2020 --outDir ./jsnext/",
"test": "npm run build && mocha 'test/**/*.js'",
"coverage": "c8 mocha && c8 report --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": {
"@typescript-eslint/eslint-plugin": "^7.6",
"@typescript-eslint/parser": "^7.6",
"c8": "^10.1.2",
"chai": "^5.0.10",
"coveralls-next": "^4.2.0",
"docdash": "^2.0.0",
"eslint": "^8.0.0",
"eslint-config-prettier": "^9.0.0",
"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.27.2",
"typescript": "^5.2"
},
"resolutions": {
"source-map": "^0.8.0-beta.0"
}
}