-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathpackage.json
90 lines (90 loc) · 2.36 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
82
83
84
85
86
87
88
89
90
{
"name": "clabe-validator",
"version": "3.0.4",
"description": "Analyze or create a CLABE number for a Mexican bank account (written in functional TypeScript)",
"license": "MIT",
"type": "module",
"module": "dist/clabe.js",
"browser": "dist/clabe.min.js",
"types": "dist/clabe.d.ts",
"exports": "./dist/clabe.js",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/center-key/clabe-validator.git"
},
"homepage": "https://github.com/center-key/clabe-validator",
"bugs": "https://github.com/center-key/clabe-validator/issues",
"docs": "https://centerkey.com/clabe",
"author": "Center Key (https://centerkey.com)",
"keywords": [
"bank-account",
"bank",
"clabe-number",
"clabe-validator",
"clabe",
"financial",
"javascript",
"mexico",
"typescript",
"validator"
],
"jshintConfig": {
"esversion": 11,
"strict": "implied",
"eqeqeq": true,
"undef": true,
"unused": true,
"varstmt": true,
"browser": true,
"mocha": true,
"node": true
},
"runScriptsConfig": {
"clean": [
"rimraf build dist"
],
"lint": [
"jshint . --exclude-path .gitignore",
"eslint --max-warnings 0"
],
"build": [
"tsc",
"esm-to-plain-js --cd=build clabe.js clabe.dev.js",
"uglifyjs build/clabe.dev.js --output build/clabe.min.js"
],
"dist": [
"add-dist-header build dist",
"html-validator spec docs"
]
},
"scripts": {
"pretest": "run-scripts clean lint build dist",
"test": "mocha spec/*.spec.js"
},
"devDependencies": {
"@eslint/js": "~9.17",
"@fortawesome/fontawesome-free": "~6.7",
"@types/node": "~22.10",
"add-dist-header": "~1.4",
"assert-deep-strict-equal": "~1.2",
"copy-file-util": "~1.2",
"copy-folder-util": "~1.1",
"dna-engine": "~3.2",
"eslint": "~9.17",
"esm-to-plain-js": "~1.1",
"jsdom": "~25.0",
"jshint": "~2.13",
"mocha": "~11.0",
"pretty-print-json": "~3.0",
"rimraf": "~6.0",
"run-scripts-util": "~1.3",
"typescript": "~5.7",
"typescript-eslint": "~8.19",
"uglify-js": "~3.19",
"w3c-html-validator": "~1.8",
"web-ignition": "~2.3"
}
}