forked from Simplify/ibantools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.44 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
78
79
80
81
{
"name": "ibantools",
"version": "4.3.3",
"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"
],
"homepage": "https://github.com/Simplify/ibantools",
"bugs": "https://github.com/Simplify/ibantools/issues",
"main": "build/ibantools.js",
"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 es5 --module commonjs --outDir ./build/",
"build-bower": "rm -rf dist && npx tsc src/*.ts --declaration --target es5 --module amd --outDir ./dist/",
"build-module": "rm -rf jsnext && npx tsc src/*.ts --target es5 --module es2015 --outDir ./jsnext/",
"test": "npm run build && mocha 'test/**/*.js'",
"karma": "karma start --single-run",
"coverage": "nyc mocha && nyc report --reporter=text-lcov | coveralls",
"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 karma && npm run docs"
},
"author": {
"name": "Saša Jovanić",
"url": "https://www.simplify.ba/"
},
"license": "MPL-2.0",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"chai": "^4.3.4",
"coveralls": "^3.1.1",
"docdash": "^2.0.0",
"eslint": "^8.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"jasmine-core": "^5.0.0",
"karma": "^6.3.4",
"karma-chrome-launcher": "^3.1",
"karma-jasmine": "^5.0",
"karma-requirejs": "^1.1",
"mocha": "^10.0.0",
"mocha-lcov-reporter": "^1.2.0",
"nyc": "^15.1.0",
"prettier": "^2.3.2",
"requirejs": "^2.3.6",
"typedoc": "^0.24.1",
"typescript": "^5.0.2"
},
"resolutions": {
"source-map": "^0.8.0-beta.0"
}
}