-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
44 lines (44 loc) · 987 Bytes
/
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
{
"name": "creditcards",
"version": "5.0.0",
"description": "Utility methods for formatting and validating credit cards",
"main": "index.js",
"scripts": {
"test": "standard && tape *.js && tsd"
},
"repository": {
"type": "git",
"url": "https://github.com/bendrucker/creditcards.git"
},
"keywords": [
"credit",
"cards",
"validation",
"formatting"
],
"author": "Ben Drucker <[email protected]> (http://www.bendrucker.me/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/bendrucker/creditcards/issues"
},
"homepage": "https://github.com/bendrucker/creditcards",
"devDependencies": {
"standard": "^17.0.0",
"tape": "^5.0.1",
"tsd": "^0.31.0"
},
"dependencies": {
"creditcards-types": "^4.0.0",
"fast-luhn": "^2.0.0",
"is-valid-month": "^1.0.0",
"parse-int": "^1.0.3",
"parse-year": "^1.0.0"
},
"files": [
"*.js",
"*.d.ts"
],
"engines": {
"node": ">= 18"
}
}