clabe-validator 1.7.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,112 @@
1
+ {
2
+ "name": "clabe-validator",
3
+ "version": "1.7.1",
4
+ "description": "Analyze or create a CLABE number for a Mexican bank account (written in TypeScript)",
5
+ "license": "MIT",
6
+ "type": "module",
7
+ "module": "dist/clabe.js",
8
+ "jsdelivr": "dist/clabe.min.js",
9
+ "main": "dist/clabe.umd.cjs",
10
+ "types": "dist/clabe.d.ts",
11
+ "files": [
12
+ "dist"
13
+ ],
14
+ "exports": {
15
+ ".": {
16
+ "import": "./dist/clabe.js",
17
+ "require": "./dist/clabe.umd.cjs"
18
+ },
19
+ "./": "./dist/"
20
+ },
21
+ "repository": "github:center-key/clabe-validator",
22
+ "homepage": "https://github.com/center-key/clabe-validator",
23
+ "bugs": "https://github.com/center-key/clabe-validator/issues",
24
+ "docs": "https://centerkey.com/clabe",
25
+ "author": "Center Key (https://centerkey.com)",
26
+ "keywords": [
27
+ "bank-account",
28
+ "bank",
29
+ "clabe-number",
30
+ "clabe-validator",
31
+ "clabe",
32
+ "financial",
33
+ "javascript",
34
+ "mexico",
35
+ "typescript",
36
+ "validator"
37
+ ],
38
+ "jshintConfig": {
39
+ "esversion": 9,
40
+ "strict": "implied",
41
+ "eqeqeq": true,
42
+ "undef": true,
43
+ "unused": true,
44
+ "varstmt": true,
45
+ "browser": true,
46
+ "mocha": true,
47
+ "node": true
48
+ },
49
+ "eslintConfig": {
50
+ "ignorePatterns": [
51
+ "build",
52
+ "dist",
53
+ "node_modules"
54
+ ],
55
+ "root": true,
56
+ "parser": "@typescript-eslint/parser",
57
+ "plugins": [
58
+ "@typescript-eslint"
59
+ ],
60
+ "extends": [
61
+ "eslint:recommended",
62
+ "plugin:@typescript-eslint/recommended"
63
+ ],
64
+ "rules": {
65
+ "@typescript-eslint/no-non-null-assertion": "off"
66
+ }
67
+ },
68
+ "scripts": {
69
+ "step:01": "rimraf build dist **/.DS_Store",
70
+ "step:02": "jshint . --exclude node_modules,build,dist",
71
+ "step:03": "eslint --max-warnings 0 . --ext .ts",
72
+ "step:04": "tsc",
73
+ "step:05": "tsc --module UMD --outDir build/umd",
74
+ "step:06": "cpy build/umd/clabe.js build --rename=clabe.umd.cjs",
75
+ "step:07": "gulp minify-js",
76
+ "step:08": "add-dist-header build dist",
77
+ "step:09": "w3c-html-validator",
78
+ "pretest": "npm-run-all step:*",
79
+ "test": "mocha spec/*.spec.js"
80
+ },
81
+ "dependencies": {},
82
+ "devDependencies": {
83
+ "@babel/core": "~7.15",
84
+ "@babel/preset-env": "~7.15",
85
+ "@fortawesome/fontawesome-free": "~5.15",
86
+ "@types/node": "~16.10",
87
+ "@typescript-eslint/eslint-plugin": "~4.32",
88
+ "@typescript-eslint/parser": "~4.32",
89
+ "add-dist-header": "~0.1",
90
+ "assert-deep-strict-equal": "~0.0",
91
+ "babel-minify": "~0.5",
92
+ "cpy-cli": "~3.1",
93
+ "dna.js": "~1.9",
94
+ "eslint": "~7.32",
95
+ "gulp": "~4.0",
96
+ "gulp-append-prepend": "~1.0",
97
+ "gulp-babel": "~8.0",
98
+ "gulp-rename": "~2.0",
99
+ "gulp-replace": "~1.1",
100
+ "gulp-size": "~4.0",
101
+ "jquery": "~3.6",
102
+ "jsdom": "~17.0",
103
+ "jshint": "~2.13",
104
+ "mocha": "~9.1",
105
+ "npm-run-all2": "~5.0",
106
+ "pretty-print-json": "~1.1",
107
+ "rimraf": "~3.0",
108
+ "typescript": "~4.4",
109
+ "w3c-html-validator": "~0.8",
110
+ "web-ignition": "~1.4"
111
+ }
112
+ }